diff --git a/LICENSE b/LICENSE index 25a87e7..a3eeae7 100644 --- a/LICENSE +++ b/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: diff --git a/README.md b/README.md index 96c541a..2bc1c24 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,8 @@ # Wiki +## Welcome to the Adrianux Wiki + +### Pages + +* [Setting up a Python Development Environment](SETTING_UP_A_PYTHON_DEVELOPMENT_ENVIRONMENT.md) + diff --git a/SETTING_UP_A_PYTHON_DEVELOPMENT_ENVIRONMENT.md b/SETTING_UP_A_PYTHON_DEVELOPMENT_ENVIRONMENT.md new file mode 100644 index 0000000..4888237 --- /dev/null +++ b/SETTING_UP_A_PYTHON_DEVELOPMENT_ENVIRONMENT.md @@ -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) +