ImportError: the 'trace' from 'tensorflow.python.profiler' - python

I were using environments for months and they were working perfectly.. suddenly i can not execute any code in pycharm under any virtual environment and i get this error massage:
from tensorflow.python.profiler import trace
ImportError: cannot import name 'trace' from 'tensorflow.python.profiler' (C:\Users\Nuha\anaconda3\envs\tf_1.15\lib\site-packages\tensorflow_core\python\profiler_init_.py)
Any help please!!
It seams that it happens because i install more packages and maybe conflict occurs

Try to install trace
pip3 install trace

it was because environment conflict so i rebuild new environment and it works perfectly

Related

I couldn't import or use tdclient library

I got an error with this code:
from td.client import TDClient
Error message:
ModuleNotFoundError: No module named 'tdclient'
and I installed tdclient through the command line:
pip install td-client
and it was successfully installed.
If you are using virtual environments (venv), ensure you installed the module in the right venv.
If you are indeed using the right virtual env, or you're not using virtual environments at all, there may be a typo in the import statement.

Packages installed on Anaconda, but can't access in Spyder or Jupyter

I have the plotly package installed on anaconda, I can see this on my base (root) environment within Anaconda navigator.
However, when I try to import the package on Spyder/Jupyter this following occurs,
ModuleNotFoundError: No module named 'retrying'
Do you know of anyway I could check why this hasn't updated Spyder/Jupyter?
Please show how you attempted to import the package on your respective IDE, whether Spyder/Jupyter. Do comply to SO's guidelines before posting questions.
Without delay, this may be an error due to missing module retrying, a dependency for plotly
To solve this, please attempt to install retrying via pip install retrying
You can open a terminal in the top right corner of the window of Jupyter (new --> Terminal). There you can pip install plotly. Restart Jupyter and it should be okay. :)

cannot import name 'parabolic' from 'parabolic'

I am using Spyder with anaconda, firstly I tried to install it via anaconda but this didn't work so instead installed it via pip using:
pip install parabolic
however now when I try and call parabolic the following error occurs:
ImportError: cannot import name 'parabolic' from 'parabolic' (/Users/harry/opt/anaconda3/lib/python3.8/site-packages/parabolic/__init__.py)
does anyone have any ideas as to why this might be. For context I am trying to run the following code:
https://gist.github.com/jgomezdans/434642/8b738ff4bff7f549f6255f5da3668f910b7352a2

ModuleNotFoundError: No module named 'tensorflow' Vs code

I am running on windows 10. I am having problems with importing TensorFlow. I am in Vs code. I installed tensorflow using pip3. And here is the error:
Traceback (most recent call last):
File "c:/Users/USER/PycharmProjects/tt/main.py", line 1, in <module>
import tensorflow as tf
ModuleNotFoundError: No module named 'tensorflow'
I created my project in pycharm.
I am using python 3.7.5 and TensorFlow 2.0.0. This is how I installed TF:
pip3 install tensorflow==2.0.0
please help I was having this problem for a week.
Thanks , In Advance
For your work/project, please try to create a new virtual environment and then install all your required packages.
Like this:
$ python3 -m venv env
Activate it:
$ source env/bin/activate
and then install the tensorflow package inside your virtual environment:
pip3 install tensorflow
I think you need to create environment separate
and then install tensorflow..
for more information regarding envirnoment Link
Do you have several different python environments on your pc? Which python interpreter are you using when you install tensorflow?
The Status Bar will show you the current interpreter in the lower left corner. Check whether it is the same with the one you use when you install tensorflow.
enter image description here
I was getting your exact error, but this worked for me:
File->settings
Workspace tab
Search for "interpreter"
Put the complete path to the python.exe you want to execute under "default interpreter path"
It seems VSCode either found (or included) an older version of python that couldn't find the things I installed with pip.
I am a bit of a python newb and I'm guessing the venv approach is superior, but I couldn't get that cooperating with VSCode on windows.

pyodbc module not found

I am facing a situation where modules like pyodbc which used to work earlier (3 weeks back) are not working anymore in my laptop. I am repeatedly getting Module not found error.
To resolve it by myself, I have gone through similar articles in stack overflow and implemented some suggestions like this. Yet the issue still persists. My machine (Windows 10) has only one python version (python v3.7.2), and I have never created any virtualenv.
C:\Users\Kris\eclipse-workspace\SQLPyODBC>conntest.py --serverName "IDEA-PC\SQLEXPRESS" --name "SampleStore" --trustedConn "yes"
Traceback (most recent call last):
File "C:\Users\Kris\eclipse-workspace\SQLPyODBC\conntest.py", line 1, in <module>
import pyodbc
ModuleNotFoundError: No module named 'pyodbc'
The referenced package is available under C:\Users\Kris\AppData\Local\Programs\Python\Python37-32\Lib\site-packages directory. Also the path of python interpreter in eclipse IDE (PyDev) is pointing to correct python executable path.
Just to test, I have downloaded pymssql module, and guess what... it is also showing the same error message. I have uninstalled and re-installed packages. No solution.
If you're using Anaconda install using following code,
conda install -c anaconda pyodbc
Before importing pyodbc in python, you should install the module by using pip directly from cmd.
pip install pyodbc
if that does not work, try using pip to uninstall and install it again after a restart (Or kill all python related tasks). Hope it works

Categories