Installation¶
This toolbox require Python>=3.9.
Install from pip¶
If you have not installed this toolbox, you can install it by
pip install SSVEPAnalysisToolbox
If you already installed this toolbox, you can update it by
pip install --upgrade --force-reinstall SSVEPAnalysisToolbox
Note: This toolbox does not contain jupyter. You may check jupyter official website to install jupyter and run some demos.
Directly download from Github¶
Donwload or clone this repository.
git clone https://github.com/pikipity/SSVEP-Analysis-Toolbox.gitInstall required packages. You can find all required packages in
environment.yml. If you use conda or Anaconda, you can create a new virtual environment usingenvironment.yml.conda env create -f environment.ymlNow, you can use this toolbox. If you use
condaoranaconda, do not forget to enter your virtual environment. In addition, when you use this toolbox, remember add the toolbox’s path in your python searching path. You can add the follow code in your python file.import sys sys.path.append(<toolbox_path>)