Getting Started
We recommend the miniconda Python distribution, which contains many easy-to-install scientific python packages and recommend to create a separate environment.
If you already had a non-Anaconda version of python installed, you will need to make sure you use Anaconda in order to follow the instructions below. The use of the conda environment is optional, but provides a clean, known working environment for ScopeFoundry.
Windows
Download and install miniconda python distribution
Create an environment with the required dependencies. Anaconda provides a way to make a clean set of packages in an environment. To create an environment called “scopefoundry” use
anaconda(3) prompt
to run:conda create -n scopefoundry python=3.13
To include ScopeFoundry and all of the packages ScopeFoundry needs to run activate the environment:
conda activate scopefoundry
To download and install ScopeFoundry and it’s dependencies
pip install pyqt6 qtconsole matplotlib scopefoundry
where
qtconsole
,matplotlib
are optional
Mac / Linux
Same step as above for Windows except that
you can use
terminal
instead ofanaconda prompt
.for older versions of anaconda (<4.4 before 2017) you have to replace
conda activate scopefoundry
withsource activate scopefoundry
Next
check your installation by making your first app in 2 min.
setup recommended editor (IDE) for easier code manipulation
go back to documentation overview