Skip to content
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

Documentation Fix: Python Version Update #910

Merged
merged 1 commit into from
Dec 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/users-guide/modelsetup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -156,15 +156,15 @@ This method is recommended for ActivitySim users who also wish to customize the
2. Create a conda environment (basically a Python install just for this project)
using mambaforge prompt or conda prompt depending on the package manager you use (on Windows) or the terminal (macOS or Linux)::

mamba create -n asim python=3.9 activitysim -c conda-forge --override-channels
mamba create -n asim python=3.10 activitysim -c conda-forge --override-channels

This command will create the environment and install all the dependencies
required for running ActivitySim. It is only necessary to create the environment
once per machine, you do not need to (re)create the environment for each session.
If you would also like to install other tools or optional dependencies, it is
possible to do so by adding additional libraries to this command. For example::

mamba create -n asim python=3.9 activitysim jupyterlab larch -c conda-forge --override-channels
mamba create -n asim python=3.10 activitysim jupyterlab larch -c conda-forge --override-channels

This example installs a specific version of Python, version 3.9. A similar
approach can be used to install specific versions of other libraries as well,
Expand Down
Loading