Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danielbatres/pip-virtual-environments
https://github.com/danielbatres/pip-virtual-environments
environment pip python python3 virtualenv
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/danielbatres/pip-virtual-environments
- Owner: danielbatres
- License: mit
- Created: 2023-10-29T22:37:06.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-30T20:44:13.000Z (about 1 year ago)
- Last Synced: 2024-11-18T01:16:25.274Z (2 months 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 gamepython3 main.py
```## App project
```sh
git clonecd app
python3 -m venv env
source env/bin/activate
pip3 install -r requirements.txt
python3 main.py
```