...
Table of Contents |
---|
Install single package
Using Pipenv
Code Block |
---|
pipenv install <package_name> |
you can add more package to the input commands to install more packages simultaneously. All packages will be recorded in the Pipfile/Pipfile.lock.
Using Conda
Code Block |
---|
conda install <package_name> |
Now that we have an environment with the required packages and Python version, we can move to prepare and run the actual code.
...