Can't figure out how to install skater package in Python? - python

I'm trying to install the 'Skater' package to enable model interpretation in Python.
I have tried installing it with conda install -c conda-forge skater and pip install -U skater but I get
ModuleNotFoundError: No module named 'skater'
whenever I try to use the following import statements:
from skater.core.explanations import Interpretation
from skater.model import InMemoryModel

Related

No module named 'tensorflow.tsl'

I'm trying to install Tensorflow. I did the installation using the cmd.exe prompt and the installation was a success. But when I try to import TensorFlow appear the following error
ModuleNotFoundError: No module named 'tensorflow.tsl'
I follow this steps to install tensorflow:
$ pip install -U pip
$ pip install tensorflow
How can I solve the issue?
Check the version of tensorflow-serving-api and update it with
$ pip install tensorflow-serving-api==X.Y.0
X and Y should match your TensorFlow version. You can determine your TensorFlow version with
$ pip freeze | grep tensorflow

ModuleNotFoundError: No module named 'kmodes'

I have tried installing it using pip install kmodes and it says that "Requirement is satisfied" but am not being able to import the library even after that.
The list of libraries doesn't have kmodes even after installing. Attaching screenshot for reference. What is happening here?
from kmodes.kprototypes import KPrototypes
ModuleNotFoundError: No module named 'kmodes'
Maybe your PIP is installing to the wrong version of python and the code you are running is being interreted by a later version
Try copying your python executable path and running this
C:\Users\username\AppData\Local\Programs\Python\Python39\python.exe -m pip install kmodes
Another reason is that kmodes did not install properly the first time
Try running this as an administrator
pip uninstall kmodes && pip install kmodes

can't install edward2 a library in python

I want to install edward2 library: https://github.com/google/edward2.
I used this command: pip install "git+https://github.com/google/edward2.git#egg=edward2". But when I want to import it in spyder it had an error:
ModuleNotFoundError: No module named 'edward2'.
Could someone help me to install it with conda?

Gluonnlp installation not found on Sagemaker jupyter notebook

I am attempting to install Gluonnlp to a sagemaker jupyter notebook. Im using the command !sudo pip3 install gluonnlp to install. Which is successful. However on import I get ModuleNotFoundError: No module named 'gluonnlp'
I got the same issue when attempting to install mxnet with pip in the same notebook. It was resolved when I conda installed mxnet instead. However conda install has not been working for gluonnlp as it cannot find the package. I can't seem to find a way to conda install gluonnlp. Any suggestions would be highly appreciated.
Here are some of the commands I have tried
!sudo pip3 install gluonnlp
!conda install gluonnlp --> Anaconda cant find the package in any channels
!conda install pip --y
!sudo pip3 install gluonnlp
!sudo pip3 install gluonnlp
!conda install -c conda-forge gluonnlp --y
All these commands on my import
import warnings
warnings.filterwarnings('ignore')
import io
import random
import numpy as np
import mxnet as mx
import gluonnlp as nlp
from bert import data, model
result in the error
ModuleNotFoundError: No module named 'gluonnlp'
this is as simple as creating a Jupyter notebook using the 'conda_mxnet_p36' kernel, and adding a cell containing:
!pip install gluonnlp

ImportError: No module named 'xgboost'

This
import sys
from platform import python_version
print(sys.base_prefix)
print(python_version())
outputs this:
/home/hp/anaconda3/envs/tensorflow
3.5.4
I tried to install it with the following commands:
conda install py-xgboost
and
conda install -c conda-forge xgboost
Each time I am getting this error:
ImportError: No module named 'xgboost'
OS:
Ubuntu 16.04
Although your second attempt should work, your first attempt doesn't look right; as per the documentation, you should use
conda install -c anaconda py-xgboost
after you have activated the respective environment where you want the package installed.

Categories