This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# CD into your new python project | |
cd /Users/omid/GitHub/scripts/ai-heatmap | |
# Create a virtual environment, add to gitignore, activate it | |
python3 -m venv .venv && echo ".venv/" >> .gitignore && source .venv/bin/activate | |
# Now install your dependencies | |
echo "matplotlib\nnumpy\npytz" > requirements.txt && pip3 install -r requirements.txt | |
# Your prompt will now be prefixed with (.venv) and you can safely run |