Compare commits

..

2 Commits

Author SHA1 Message Date
27b8f71452 Add readme 2020-09-10 15:33:52 -06:00
812afa5808 Freeze requirements 2020-09-10 15:26:35 -06:00
2 changed files with 23 additions and 0 deletions

22
README.md Normal file
View File

@ -0,0 +1,22 @@
# Minecraft Bot
## Setup
Assuming Debian / Ubuntu based distro:
```
$ sudo apt update
$ sudo apt install build-essential python3 python3-dev python3-pip python-virtualenv python3-virtualenv
$ virtualenv -p python3 env
$ source env/bin/activate
(env) $ pip install -r requirements.txt
```
Always make sure the virtual environment is running `(env)`.
## Running
```
(env) $ USERNAME=you@domain.com PASSWORD=supersecret SERVER=example.com python main.py
```

View File

@ -1,3 +1,4 @@
astar==0.92
bunch==1.0.1
certifi==2020.6.20
cffi==1.14.2