I installed pyzo and miniconda in Windows 10 and found numpy and matplotlib using conda install . But when I try to run
import numpy as np import matplotlib.pyplot as plt
I get this error:
Traceback (most recent call last): File "<tmp 1>", line 3, in <module> import numpy File "c:\users\jakub\miniconda3\lib\site-packages\numpy\__init__.py", line 165, in <module> from numpy.__config__ import show as show_config File "c:\users\jakub\miniconda3\lib\site-packages\numpy\__config__.py", line 5 lapack_mkl_info={'libraries': ['mkl_lapack95_lp64', 'mkl_core_dll', 'mkl_intel_lp64_dll', 'mkl_intel_thread_dll'], 'define_macros': [('SCIPY_MKL_H', None), ('HAVE_CBLAS', None)], 'include_dirs': ['c:\users\jakub\miniconda3\\Library\\include'], 'library_dirs': ['c:\users\jakub\miniconda3\\Library\\lib']} ^ SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \uXXXX escape
I have no non-standard character in either my code or the directory structure ... I read a lot of posts citing similar problems with UTF-8, but this is different as it happens during the initial import.
Jakub source share