Skip to content

Instantly share code, notes, and snippets.

@faysou
faysou / Nautilus_Install_2.md
Last active September 25, 2025 09:38
Install nautilus_trader dev env from scratch, using pyenv and uv
curl https://sh.rustup.rs -sSf | bash -s -- -y
source ~/.cargo/env

curl -LsSf https://astral.sh/uv/install.sh | sh

brew install pre-commit pyenv pyenv-virtualenv

# Note: poetry is not necessary anymore for nautilus
# curl -sSL https://install.python-poetry.org/ | python3 - #--uninstall
@faysou
faysou / Nautilus_Install.md
Last active August 6, 2025 17:52
Install nautilus_trader dev env from scratch using uv only
curl https://sh.rustup.rs -sSf | bash -s -- -y
source ~/.cargo/env

curl -LsSf https://astral.sh/uv/install.sh | sh
source ~/.zshrc

NAUTILUS_DIR=~/Developer/nautilus
mkdir -p $NAUTILUS_DIR
cd $NAUTILUS_DIR