@@ -70,21 +70,21 @@ home installation folder, such as:
70
70
3. Create a conda environment (basically a Python install just for this project)
71
71
using conda Prompt (on Windows) or the terminal (macOS or Linux)::
72
72
73
- mamba create -n asim python=3.9 activitysim -c conda-forge --override-channels
73
+ mamba create -n asim python=3.10 activitysim -c conda-forge --override-channels
74
74
75
75
This command will create the environment and install all the dependencies
76
76
required for running ActivitySim. It is only necessary to create the environment
77
77
once per machine, you do not need to (re)create the environment for each session.
78
78
If you would also like to install other tools or optional dependencies, it is
79
79
possible to do so by adding additional libraries to this command. For example::
80
80
81
- mamba create -n asim python=3.9 activitysim jupyterlab larch -c conda-forge --override-channels
81
+ mamba create -n asim python=3.10 activitysim jupyterlab larch -c conda-forge --override-channels
82
82
83
- This example installs a specific version of Python, version 3.9 . A similar
83
+ This example installs a specific version of Python, version 3.10 . A similar
84
84
approach can be used to install specific versions of other libraries as well,
85
85
including ActivitySim, itself. For example::
86
86
87
- mamba create -n asim python=3.9 activitysim=1.0.2 -c conda-forge --override-channels
87
+ mamba create -n asim python=3.10 activitysim=1.0.2 -c conda-forge --override-channels
88
88
89
89
Additional libraries can also be installed later. You may want to consider these
90
90
tools for certain development tasks::
0 commit comments