-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into outlier-filtering
- Loading branch information
Showing
5 changed files
with
825 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# FAQ | ||
|
||
### When installing FuseTS, I encounter the error `No module named 'numpy'`. What should I do? | ||
|
||
If you encounter the `No module named 'numpy'` error during the installation of FuseTS, it's a known issue when | ||
installing the `vam.whittaker` Python library in Python 3.8 - 3.10. | ||
You can resolve this issue by following these steps: | ||
|
||
1. Before installing the FuseTS sources, open your terminal or command prompt. | ||
2. Run the following command to install a specific version of numpy and the Cython library: | ||
|
||
```python | ||
pip install numpy==1.23.5 cython | ||
``` | ||
|
||
This command ensures that the required version of numpy is installed, which should resolve the `No module named 'numpy'` error during FuseTS installation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ openeo | |
api | ||
maintenance | ||
changelog | ||
faq | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.