Authors: Luis Aguilera
Basic Python tutorial
To install this repository and all its dependencies. We recommend installing Anaconda.
- Clone the repository.
git clone --depth 1 https://github.com/luisub/Python_Tutorial.gitconda create -n Python_Tutorial python=3.10 -yconda activate Python_Tutorial- Move to the directory
cd Python_Tutorial - To include the rest of the requirements use:
pip install -r requirements.txtAdditional steps to deactivate or remove the environment from the computer:
- To deactivate the environment, use
conda deactivate- To remove the environment use:
conda env remove -n Python_Tutorial