You can install Mage using Docker or pip
:
docker run -it -p 6789:6789 -v $(pwd):/home/src \
mageai/mageai mage start [project_name]
Open http://localhost:6789 in your browser and build a pipeline.
docker run -it -p 6789:6789 -v $(pwd):/home/src \
mageai/mageai mage run [project_name] [pipeline]
If you want to create a different project with a different name, run the following:
docker run -it -p 6789:6789 -v $(pwd):/home/src \
mageai/mageai mage init [project_name]
pip install mage-ai
You may need to install development libraries for MIT Kerberos to use some Mage features. On Ubuntu, this can be installed as:
apt install libkrb5-dev
mage start [project_name]
Open http://localhost:6789 in your browser and build a pipeline.
mage run [project_name] [pipeline]
If you want to create a different project with a different name, run the following:
mage init [project_name]