-
Notifications
You must be signed in to change notification settings - Fork 20
How to Install scikit bio on Windows
AndrewS-GH edited this page Feb 24, 2021
·
3 revisions
- Download Visual Studio 2017 Community Edition.
- Start the Visual Studio Installer. It will display a screen with tabs titled "Workloads", "Individual components", "Language packs" and "Installed locations". Select the "Individual components" tab.
- Scroll down to the "Compilers" section and select "VC++ 2015.3 v140 toolset for desktop (x86,x64)".
- Click the "Install" button in the bottom right corner. The installation process will take some time. When it is finished, you can close the Visual Studio Installer.
- Download the latest source from the scikit-bio Github repository.
- Using a tool like 7-zip, unzip it at your Anaconda directory (probably something like
C:\Users\YOURNAME\Anaconda2
). - In a text editor, open the
setup.py
file in thescikit-bio-master
folder. Look for the line that readsif sys.platform == 'win32':
. Change it toif sys.platform == 'win32' or sys.platform == 'win64':
and save the file. - Open a command line type
cd C:\Users\YOURNAME\Anaconda2\scikit-bio-master
to change to thescikit-bio-master
directory. Then typepython setup.py install
. This will installscikit-bio
. - When the process is finished, make sure that you have an up-to-date version of the
matplotlib
graphing library by typingpip install -U matplotlib
.
- User's Guide
- Developer's Guide
- Lexos Bootcamp
- Git Basic
- Git on Pycharm
- Python Tutorial
- Python Coding Style Guide
- Back End Developer's Guide
- The Lexos 4 Frontend
- Javascript Library Maintenance
- In the Margins Content Guide
- Lexos Server Deployment Guide
- How to Install scikit-bio on Windows
- Ajax and jQuery
- Wiki Archiving Guide
- Unit Testing Guide
- Repo Administration Guide
- Proposals