-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Had to modify your install instructions #2
Comments
Hm, that's weird. Well, I think playhouse is installed with peewee and should just be removed from requirements.txt |
Ah makes sense - I think the key for me anyway (raspbian) was apt-get install libsqlite3-dev |
[sigh] I hate pip. pip3 install -r requirements.txterror: externally-managed-environment × This environment is externally managed
note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages. |
Hey, great app!
I had to modify the install instructions - already submitted a request for a spelling mistake, but also had to do the following;
cd /opt/
git clone https://github.com/Nixellion/MikrotikTrafficMonitor.git
apt install python3 python3-pip python3-dev
cd MikrotikTrafficMonitor
pip3 install -r requirements.txt
i had an error with this one, that it couldn't install the playhouse dependency so i did
apt-get install libsqlite3-dev
cd /opt
git clone https://github.com/coleifer/peewee.git
cd peewee
python3 setup.py install
pip3 install eventlet
pip3 install flask
pip3 install flask-socketio
then continued as normal
cp MikrotikTrafficMonitor.service /lib/systemd/system
ssytemctl daemon-reload
here i added
nano /opt/MikrotikTrafficMonitor/config/config.yaml
then continue
systemctl enable MikrotikTrafficMonitor
service MikrotikTrafficMonitor start
systemctl status MikrotikTrafficMonitor
The text was updated successfully, but these errors were encountered: