add: docs
This commit is contained in:
parent
df4e207aa6
commit
f776878c8d
3 changed files with 27 additions and 1 deletions
2
LICENSE
2
LICENSE
|
@ -1,6 +1,6 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2025 ahoemann
|
||||
Copyright (c) 2025 Adrian Hoemann
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
|
|
|
@ -1,2 +1,8 @@
|
|||
# Wiki
|
||||
|
||||
## Welcome to the Adrianux Wiki
|
||||
|
||||
### Pages
|
||||
|
||||
* [Setting up a Python Development Environment](SETTING_UP_A_PYTHON_DEVELOPMENT_ENVIRONMENT.md)
|
||||
|
||||
|
|
20
SETTING_UP_A_PYTHON_DEVELOPMENT_ENVIRONMENT.md
Normal file
20
SETTING_UP_A_PYTHON_DEVELOPMENT_ENVIRONMENT.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# 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
|
||||
|
||||
[Running python executables under UNIX](RUNNING_PYTHON_EXECUTABLES_UNDER_UNIX.md)
|
||||
|
||||
[Installing Dependencies](INSTALLING_DEPENDENCIES.md)
|
||||
|
Loading…
Add table
Reference in a new issue