-
Notifications
You must be signed in to change notification settings - Fork 1
Installation
Franz Sauerwald edited this page Apr 7, 2022
·
1 revision
Create a new environment, we are using python 3.9:
conda create -n NAME python=3.9
Remember the name! Run
conda activate NAME
to activate the environment before running scripts
Required Packages, run the commands below in the same order:
- tensorflow (2.7.0)
pip install tensorflow==2.7.0
(extra steps might be needed for different PCs, but this should work on the lab servers) - pandas (any):
conda install pandas
- sklearn (any):
conda install -c anaconda scikit-learn
- matplotlib (any):
conda install matplotlib
- Linter: autopep8:
pip install autopep8
Now everything should work :)