For my master thesis i need to approximate the dynamical behaviour of an airplane. The artifical neural networks will be saved here.
I use google colab as my development environment which is a extension on Jupyter Notebooks. But it will also run in a normal jupyter enviroment.
In project folder:
- activate the enviroment:
source env/bin/activate
- start the jupyter notebook:
jupyter notebook
Further pip statements will be in the jupyter notebooks. Alternativly use pip3 install -r requirements.txt
. The requirements file was created with: pip freeze > requirements.txt
In this installation example jupyter will be installed inside of a virtual enviroment.
So if not installed, install pip3 and virtualenv:
sudo apt-get install python3-pip
sudo pip3 install virtualenv
Use sudo before pip or it wont appear on the PATH
To create virtualenv and install jupyter execute the following commands in the project folder:
- create virtualenv:
virtualenv env
- activate it with:
source env/bin/activate
- install Jupyter:
pip3 install jupyter