- python3 or greater
- pip3 or greater
- Clone the repository
- Run the install script (install.sh)
- add this to your shell config file :
export PATH=$PATH":<enter-path-to-directory>/src
Test your install by running:
PyCargo help help
Your output should look like this:
PyCargo, a package manager for python binary applications!
help - Woah!! I see what you did there :D
lists all command possibilities
PyCargo help
Creates a new package in the current working directory
PyCargo new <name>
Also creates the following:
- PyCargo.toml : a file to specify package details and dependencies
Initializes the current working directory as a PyCargo managed directory
PyCargo init
Automatically installs necessary packages specified in PyCargo.toml
PyCargo run
Also creates the following:
- PyCargo.lock : to lock updation/installation of dependencies
Explicitly update/install dependancies
PyCargo update
Creates new toml file
PyCargo create_toml