OpusCleaner icon indicating copy to clipboard operation
OpusCleaner copied to clipboard

Install notes

Open hobodrifterdavid opened this issue 2 years ago • 1 comments

Hello. :) Just some notes, maybe some info can be added to readme.

I was installing on Ubuntu 20.04 (native python is 3.8). Install failed with 3.8, I added 3.10 using the deadsnakes repo:

add-apt-repository ppa:deadsnakes/ppa apt install python3.10

Also needed this module to complete requirements.txt install: apt-get install python3.10-dev

Command is then: python3.10 -m venv .env

For node, I used 'node version manager', seems to work ok with node 16.

I changed main.py, added host='0.0.0.0' so that the page is available from other machines on the network, not just localhost: uvicorn.run(f'main:app', port=args.port, host='0.0.0.0', reload=args.reload, log_level='info')

hobodrifterdavid avatar Jan 04 '23 18:01 hobodrifterdavid