Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```