Installing
The fastest way to try Spotrix locally is by using Docker and Docker Compose on a Linux or Mac OSX computer.
pip install spotrixFor more versions, please refer here.
Then run Spotrix:
# Init spotrix server
spotrix init
# Run Spotrix (open your browser with http://localhost:5000)
spotrix run Check Spotrix version:
Spotrix version
___ _
( _`\ ( )_ _
| (_(_) _ _ _ | ,_) _ __ (_)
`\__ \ ( '_`\ /'_`\ | | ( '__)| |(`\/')
( )_) || (_) )( (_) )| |_ | | | | > <
`\____)| ,__/'`\___/'`\__)(_) (_)(_/\_)
| |
(_)
Version: 1.2.0Coming ...
We assume your python environment is version 3.7.
# Clone code locally
git clone https://github.com/Spotrix/spotrix.git
cd spotrix
# Install external dependencies
pip install -r requirements/local.txt
# Install in editable mode (dev model)
pip install -e .
# Build front-end
cd spotrix-frontend
npm install; npm build
# Init spotrix server
spotrix init
# Run spotrix (open your browser with http://localhost:5000)
spotrix run Check Spotrix version:
Spotrix version
___ _
( _`\ ( )_ _
| (_(_) _ _ _ | ,_) _ __ (_)
`\__ \ ( '_`\ /'_`\ | | ( '__)| |(`\/')
( )_) || (_) )( (_) )| |_ | | | | > <
`\____)| ,__/'`\___/'`\__)(_) (_)(_/\_)
| |
(_)
Version: 1.2.0Last updated
Was this helpful?