[DOC] installation instructions general and windows, updates/clarifications
See original GitHub issueThis issue is about reproducing and potentially documenting installation of the developer version that seems to deviate from current installation instructions; and reproducing whether the current instructions, as they are written down, work properly (or not).
Via an environment mishap, I was forced to re-install my sktime development version on windows.
The vanilla workflow described in the installation instructions did not work - I had to do this (on the newest Windows version, with Anaconda):
first navigate to local sktime clone root folder, then:
conda create --name sktime python=3.8
conda activate sktime
conda install brotlipy
pip install -e .[all-extras]
pip install pytest
pip install esig
conda install -c conda-forge fbprophet
pip install numpy==1.19.5 --force-reinstall
Some takeaways, I think we need to update the install instructions:
fbprophetcauses problems, it needs to be singled out in a separate installation step. The instructions should be explicit, e.g., about installing it first separately, or later (which then makes the force-installnumpyline necessary)- setup.py extras do not include esig, which causes breakage in the dev version
pip install -e .[all-extras]is actually what the developer user wants, but that line actually doesn’t appear in the install instructions- and what’s that about
brotlipy, not sure - I did this after following a random fix for an error message I got
Issue Analytics
- State:
- Created 2 years ago
- Comments:25 (14 by maintainers)
Top Results From Across the Web
[DOC] installation instructions general and windows, updates ...
This issue is about reproducing and potentially documenting installation of the developer version that seems to deviate from current installation ...
Read more >How Windows Update works - Microsoft Learn
In this article, learn about the process Windows Update uses to download and install updates on a Windows client devices.
Read more >Licensing Microsoft Server Products with Microsoft Virtual Server
Microsoft use rights for products in the Microsoft Servers licensing models (other than Per Processor) state that each software license allows you to...
Read more >How to download updates that include drivers and hotfixes ...
This article discusses how to download updates from the Windows Update Catalog. ... and then follow the instructions to install the update.
Read more >Known Issues and Limitations: Version 8.1.x IBM Spectrum ...
This document details the Known Issues and Limitations for IBM Spectrum Protect™ Snapshot for Microsoft SQL Server 8.1.x and Data Protection ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

hi jay, did you use all_extras? all-extras doesnt work.
I think this is addressed in #1672.