-
Notifications
You must be signed in to change notification settings - Fork 23
Contribute to Atarashi
Atarashi welcomes any form of contribution or suggestions. We believe that open source is all about collaborative working to make the project and community stronger than ever. Whether you are a fresher or an experienced developer, each and every contribution counts.
You can contribute to Atarashi by:
- Opening a valid issue: visit https://github.com/fossology/atarashi/issues
- Help us in closing an existing issue
- Open a Pull Request
- Suggest us some new agent for license scanning
- Want to discuss something else: Reach out to us @ Slack
We have a few set of contribution guidelines that makes our project well organized. We highly recommend following our contribution guidelines to support us.
Not Familiar with Git?
Invest a few minutes on our Git Tutorial
-
venv allows you to manage separate package installations for different projects.
-
To create a virtual environment, go to your project’s directory and run venv.
-
On macOS and Linux:
python3 -m venv env
-
On Windows:
py -m venv env
The second argument is the location to create the virtual environment. Generally, you can just create this in your project and call it env.
-
On macOS and Linux:
source env/bin/activate
-
On Windows:
.\env\Scripts\activate
-
Leaving the virtual environment If you want to switch projects or otherwise leave your virtual environment, simply run:
deactivate