skip to Main Content

Ubuntu – I can't install a module in python

./run_007-TheBond.sh: строка 10: python: команда не найдена ./run_007-TheBond.sh: строка 11: venvScriptsactivate: команда не найдена error: externally-managed-environment × This environment is externally managed ╰─> To install Python packages system-wide, try apt install python3-xyz, where xyz is the package you are trying…

VIEW QUESTION

can't install mysql-connector with my pip

I'm trying to install mysql connector using pip but it keeps showing me this error:connection broken by 'ProxyError('Cannot connect to proxy.', TimeoutError('timed out'))': /simple/mysqlx-connector/ I think it could be a result of filtering in my region since I'm a beginner…

VIEW QUESTION

Encountered keyerror when run LangChain program with Azure API

I encountered error when I run below codes (extracted from https://python.langchain.com/docs/tutorials/llm_chain/#using-language-models) in Jupyter Notebook: import getpass import os os.environ["AZURE_OPENAI_API_KEY"] = "d957dadfasdfafdsfsafasfasfsafasf99f4b7" from langchain_openai import AzureChatOpenAI model = AzureChatOpenAI( azure_endpoint=os.environ["https://testing123.cognitiveservices.azure.com/"], azure_deployment=os.environ["testing123"], openai_api_version=os.environ["2021-04-30"], ) Error I got after run: KeyError Traceback (most…

VIEW QUESTION
Back To Top
Search