ModuleNotFoundError: No module named 'seaborn' #755
Answered
by
rclapp
jlsenaskcc
asked this question in
Q&A
Replies: 2 comments
-
Yes, you need to install seaborn lib. Run pip install seaborn
…Sent from my mobile device
On Jun 30, 2022 7:22 PM, jlsenaskcc ***@***.***> wrote:
Hi,
I'm trying to run tm1py optimuspy connecting to a planning analytics server on cloud and got this error messages:
Start quote:
ModuleNotFoundError Traceback (most recent call last)
Input In [1], in <cell line: 14>()
11 from TM1py import TM1Service
12 from mdxpy import MdxBuilder, Member, MdxHierarchySet
---> 14 from executors import ExecutionMode, OriginalOrderExecutor, MainExecutor
15 from results import OptimusResult
17 APP_NAME = "optimuspy"
File ~\OneDrive - Kimberly-Clark\Documents\Files (UserDrive)\proyectos\python\optimus-py-master\executors.py:10, in
6 from typing import List, Dict
8 from TM1py import TM1Service, Process
---> 10 from results import PermutationResult
13 def swap(order: list, i1, i2) -> List[str]:
14 seq = order[:]
File ~\OneDrive - Kimberly-Clark\Documents\Files (UserDrive)\proyectos\python\optimus-py-master\results.py:8, in
5 from pathlib import WindowsPath
6 from typing import List, Union
----> 8 import seaborn as sns
10 sns.set_theme()
11 import matplotlib.pyplot as plt
ModuleNotFoundError: No module named 'seaborn'
End quote.
Any ideas? Am I missing something?
Many tnaks.
-
Reply to this email directly, view it on GitHub<#755>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AEK7GZWT3TZB36ZYRFMG4GDVRYTWPANCNFSM52K6CNHQ>.
You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
MariusWirtz
-
I included seaborn in the readme.md Thanks for raising the issue @jlsenaskcc |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I'm trying to run tm1py optimuspy connecting to a planning analytics server on cloud and got this error messages:
Start quote:
ModuleNotFoundError Traceback (most recent call last)
Input In [1], in <cell line: 14>()
11 from TM1py import TM1Service
12 from mdxpy import MdxBuilder, Member, MdxHierarchySet
---> 14 from executors import ExecutionMode, OriginalOrderExecutor, MainExecutor
15 from results import OptimusResult
17 APP_NAME = "optimuspy"
File ~\OneDrive - Kimberly-Clark\Documents\Files (UserDrive)\proyectos\python\optimus-py-master\executors.py:10, in
6 from typing import List, Dict
8 from TM1py import TM1Service, Process
---> 10 from results import PermutationResult
13 def swap(order: list, i1, i2) -> List[str]:
14 seq = order[:]
File ~\OneDrive - Kimberly-Clark\Documents\Files (UserDrive)\proyectos\python\optimus-py-master\results.py:8, in
5 from pathlib import WindowsPath
6 from typing import List, Union
----> 8 import seaborn as sns
10 sns.set_theme()
11 import matplotlib.pyplot as plt
ModuleNotFoundError: No module named 'seaborn'
End quote.
Any ideas? Am I missing something?
Many tnaks.
Beta Was this translation helpful? Give feedback.
All reactions