17 lines
751 B
Markdown
17 lines
751 B
Markdown
# Crash course on Python installation, with a few small side tracks
|
|
|
|
|
|
|
|
# Installation
|
|
1. If not already done so, create a virtual environment to contain all the packages required. Python 3.10 is recommended. The command below will create a new environment named 'app-env' with the latest version of Python 3.10.
|
|
|
|
conda create -y -n app-env python=3.10
|
|
|
|
2. activate said environment
|
|
|
|
conda activate app-env
|
|
|
|
3. The prompt should now read '(app-env)' on the left. The app is not published on Github or anywhere else. The link below points to my own personnal home server (I didn't find any way of getting a direct download link You are now ready to install everything with this command:
|
|
|
|
pip install https://bao.dedebenui.me/s/f3KgiqMq7giN73i/download
|