Python Forum
Cannot run scikit-image in Python 3.6
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Cannot run scikit-image in Python 3.6
#4
You should only have one Anaconda instantiation.
If it work in some scenarios dos not mean that it work in all(should not jump at all).
It easy to create isolated virtual environment,so no need for two main installation.
Example:
# Make enviroment
G:\Anaconda3\Scripts
λ conda create -n sci_env scikit-image numpy    

# Activate
G:\Anaconda3\Scripts
λ activate sci_env

(sci_env) G:\Anaconda3\Scripts
λ which python
/g/Anaconda3/envs/sci_env/python

# Run your first code added print(histo)
(sci_env) G:\Anaconda3\envs\sci_env
λ python sci_test.py
Output:
(array([ 0, 1, 2, 7, 10, 7, 10, 27, 16, 14, 17, ....................................... 247, 248, 249, 250, 251, 252, 253, 254, 255]))
So working and totally isolated from main version.
You can look at my tutorial about Anaconda
Reply


Messages In This Thread
Cannot run scikit-image in Python 3.6 - by newmanf - Jan-30-2018, 06:53 PM
RE: Cannot run scikit-image in Python 3.6 - by snippsat - Jan-31-2018, 02:13 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  scikit-tensor package Lamine 1 2,648 Feb-27-2022, 01:16 PM
Last Post: jefsummers
  SciKit vs Dynamo vs Grasshopper/Dodo for A.I. Planner Project Julian 1 2,951 Jun-10-2019, 02:41 AM
Last Post: Larz60+
  Possible Scikit-Learn Import Issue? BlackHeart 2 7,314 Oct-26-2017, 04:07 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020