https://github.com/danielbatres/pip-virtual-environments
https://github.com/danielbatres/pip-virtual-environments
environment pip python python3 virtualenv
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/danielbatres/pip-virtual-environments
- Owner: danielbatres
- License: mit
- Created: 2023-10-29T22:37:06.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-30T20:44:13.000Z (over 2 years ago)
- Last Synced: 2025-01-19T00:00:10.833Z (over 1 year ago)
- Topics: environment, pip, python, python3, virtualenv
- Language: Python
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PIP and Virtual Environments
## Game project
To run the game you must follow the following instruction in the terminal
```sh
cd game
python3 main.py
```
## App project
```sh
git clone
cd app
python3 -m venv env
source env/bin/activate
pip3 install -r requirements.txt
python3 main.py
```