add: docs
This commit is contained in:
parent
e1302716cb
commit
0caf5fa2ed
5 changed files with 16 additions and 2 deletions
7
PYTHON/INSTALLING_DEPENDENCIES.md
Normal file
7
PYTHON/INSTALLING_DEPENDENCIES.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
# Installing Dependencies
|
||||
|
||||
# Updating and Upgrading pip
|
||||
|
||||
```sh
|
||||
python -m pip install --upgrade pip
|
||||
```
|
6
PYTHON/PYTHON_TABLE_OF_CONTENTS.md
Normal file
6
PYTHON/PYTHON_TABLE_OF_CONTENTS.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
# Python Documentation
|
||||
|
||||
## Pages
|
||||
|
||||
* [Setting up a Python Development Environment](SETTING_UP_A_PYTHON_DEVELOPMENT_ENVIRONMENT.md)
|
||||
|
19
PYTHON/SETTING_UP_A_PYTHON_DEVELOPMENT_ENVIRONMENT.md
Normal file
19
PYTHON/SETTING_UP_A_PYTHON_DEVELOPMENT_ENVIRONMENT.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Setting up a Python Development Environment
|
||||
|
||||
Creating a virtual environment:
|
||||
|
||||
```sh
|
||||
python -m venv .venv
|
||||
```
|
||||
|
||||
Activating the virtual environment:
|
||||
|
||||
```sh
|
||||
. .venv/bin/activate
|
||||
```
|
||||
|
||||
# Other Relevant Documentation
|
||||
|
||||
[Installing Dependencies](INSTALLING_DEPENDENCIES.md)
|
||||
|
||||
[Running python executables under UNIX](RUNNING_PYTHON_EXECUTABLES_UNDER_UNIX.md)
|
Loading…
Add table
Add a link
Reference in a new issue