ImportError: cannot import name 'speech_v1beta1' - python-3.x

I've installed google-cloud with pip, and that error occurs when I write
from google.cloud import speech_v1p1beta1
While it's all ok (but I cannot obviously use the beta features) when I write
from google.cloud import speech
How can I solve this problem?
Thanks

You need to upgrade your google-cloud-speech library by running:
pip install --upgrade google-cloud-speech

Related

ImportError: cannot import name 'Ontonotes' from 'allennlp.data.dataset_readers.dataset_utils'

I'm using python 3.7 and pytorch in google colab.
I installed
Pip install alennlp==2.4.0
pip install allennlp-models
In google colab, but when I run this code:
allennlp train experiments/oie_labeler_crf.json -s ~/Desktop/PHD/NLP/large-scale-oie/results/classic_train_crf --include-package large_scale_oie
I get this error:
File "/content/large-scale-oie/large_scale_oie/dataset_readers/oie_reader.py", line 12, in
from allennlp.data.dataset_readers.dataset_utils import Ontonotes, OntonotesSentence
ImportError: cannot import name 'Ontonotes' from 'allennlp.data.dataset_readers.dataset_utils' (/usr/local/lib/python3.7/dist-packages/allennlp/data/dataset_readers/dataset_utils/init.py)
Please help me! What do I do?
You might be using an incompatible AllenNLP version. You can try to run:
pip install alennlp==0.9.0
I believe the error will be gone.

import error when trying to import tensorflow in python3

I'm getting this error when trying to import tensorflow ImportError: cannot import name 'tensorflow' from 'opt_einsum.backends' (/usr/local/lib/python3.7/site-packages/opt_einsum/backends/__init__.py).
I've installed it using pip and it's version 2.2.0.
Can someone please help me with this?
I had the same error, removing and reinstalling opt_einsum worked for me, e.g.:
pip uninstall opt_einsum
pip install opt_einsum
If this doesn't work, check if tensorflow.py is located in the /usr/local/lib/python3.7/site-packages/opt_einsum/backends/
folder

No module named 'email.FeedParser'

I am trying to run a code on AWS Lambda but it is returning me the error: "Unable to import module 'main': No module named 'email.FeedParser'".
My code does not use email feedparser module or function. It just connect to one Google API and download a CSV report.
I've checked my code scope and the reference for this module is being done by httplib2 library and on the email/parser.py from the python standard library.
All required libraries are fully updated in requirements.txt file. The code is also configured by a samTemplate.yaml file to execute in a python 3.7 environment at aws.
Do you guys had experienced this problem before? How can I solve it?
Thank you!
import httplib2
from googleapiclient import discovery
from oauth2client.client import flow_from_clientsecrets
from oauth2client.file import Storage
from oauth2client.tools import run_flow
from urllib.parse import urlencode
import requests
import json
import time as t
import pandas as pd
from datetime import datetime, timedelta
from calendar import monthrange
from dateutil.relativedelta import relativedelta
I had to make sure pip3 was actually installing to python3 and not python2.
Instead of:
pip3 install <package>
I had to do:
python3.8 -m pip install <package>
See answer here: Why pip3 install in python2 sitepackages
I had exactly the same issue...
I did this:
vim ~/.pydistutils.cfg
[install]
prefix=
see here: 24257803 for more info on this step
rm -rf [dependencies_dir]
pip3 install -r requirements.txt --target [dependencies_dir]
Pip3 will install this dependencies to Python3, where pip was installing to Python2 (where some of these packages don't exist). So when deploying to Lambda via serverless the packages weren't included.

No module named future

I am running a telegram bot in python and i am using python3.6 on raspbian ( pi3 )
Below is my imports:
from __future__ import (absolute_import, division,
print_function, unicode_literals)
from builtins import (
bytes, dict, int, list, object, range, str,
ascii, chr, hex, input, next, oct, open,
pow, round, super,
filter, map, zip)
from uuid import uuid4
import re
import telegram
from telegram.utils.helpers import escape_markdown
from telegram import InlineQueryResultArticle, ParseMode, \
InputTextMessageContent
from telegram.ext import Updater, InlineQueryHandler, CommandHandler
import logging
import random
import telepot
import unicodedata
import json
import requests
import bs4
from bs4 import BeautifulSoup
When i try to run my bot with sudo python3 bot.py i get
ImportError: No module named 'future'
I have searched and found many answers on this but none have worked for me such as pip install future and pip3 install future The module does show in my lib for python 3.6 future in lib
Any idea why it still says No module named future? ?
I ran into a similar problem using Python code written by someone else. See http://python-future.org/. future is a module that aids in conversion between Python 2 and 3. It was an easy installation for me by doing pip3 install future
I tried install, reinstall, easy_install and conda install but nothing worked for me. I was finally able to import my package by running upgrade on future.
pip install -U future
This solved my issue.
None of these work for me, despite uninstalling the module, then reinstalling it with pip3 install future I keep getting the error (trying to run ardupilot's sim_vehicle.py --console --map in case it matters)
I had the similar problem, solved it using conda install future
I had the similar problem, solved it using easy_install future
I know this is an old question, but if anyone needs it. This happened when I was trying to builds tests for ArduPilot.
I was facing a similar problem, the pip that you'd have been using was for python3. So you need to install pip for python2.7. You can do that using curl
apt-get install curl
curl https://bootstrap.pypa.io/2.7/get-pip.py -o get-pip.py
python get-pip.py
Then you can run
pip install future
to install future.
I encountered the same problem.
The previous answer isn't effective anymore.
I had to install python 3.7 and use this :
apt-get install curl
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python3.7 get-pip.py

ImportError: No module named 'sklearn.multioutput'

when I import MultiOutputRegressor with from sklearn.multioutput import MultiOutputRegressor,I got a ImportError: No module named 'sklearn.multioutput'.
Does anyone know how to deal with it? thank you!
I got the same error which I removed by updating sklearn to the latest version (0.18) with the following pip command:
pip install -U scikit-learn

Resources