Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
known_bugs [2016/07/13 08:57]
arve
known_bugs [2019/12/23 23:20]
admin [libRadtran doesn't compile]
Line 1: Line 1:
 ==== libRadtran doesn'​t compile ==== ==== libRadtran doesn'​t compile ====
 **Solution:​** When compiling uvspec, please make sure that you have all required compilers and tools installed, see [[Download]]. For the newer versions of Linux, some of the standard tools are no longer installed by default (as modern users don't want to fiddle around with such ugly things as compilers etc). One particular example is Flex - The Fast Lexical Analyzer. It is usually available for all flavours of Linux, under Mac, and for cygwin, but not necessarily installed by default. You may have to select installation of flex manually. If you have tried compiling uvspec without having flex installed, you may need to remove src/​*_lex.c. ​ **Solution:​** When compiling uvspec, please make sure that you have all required compilers and tools installed, see [[Download]]. For the newer versions of Linux, some of the standard tools are no longer installed by default (as modern users don't want to fiddle around with such ugly things as compilers etc). One particular example is Flex - The Fast Lexical Analyzer. It is usually available for all flavours of Linux, under Mac, and for cygwin, but not necessarily installed by default. You may have to select installation of flex manually. If you have tried compiling uvspec without having flex installed, you may need to remove src/​*_lex.c. ​
 +
 +Also, we still rely on Python 2.7. It is planned to upgrade to Python 3 soon - stay tuned!
  
 ==== GUI: from matplotlib.axes import _process_plot_var_args fails ==== ==== GUI: from matplotlib.axes import _process_plot_var_args fails ====
 **Solution:​** In the file GUI/​wxmpl.py please change **Solution:​** In the file GUI/​wxmpl.py please change
  
-''​from matplotlib.axes import _process_plot_var_args''​+    ​from matplotlib.axes import _process_plot_var_args
  
 to  to 
  
-''​ + 
-from distutils.version import LooseVersion +   ​from distutils.version import LooseVersion 
-if LooseVersion(matplotlib.__version__) < LooseVersion('​1.4.2'​):​ +   ​if LooseVersion(matplotlib.__version__) < LooseVersion('​1.4.2'​):​ 
-    from matplotlib.axes import _process_plot_var_args +       ​from matplotlib.axes import _process_plot_var_args 
-else: +   ​else: 
-    from matplotlib.axes._base import _process_plot_var_args +       ​from matplotlib.axes._base import _process_plot_var_args 
-'' ​   ​+
 
 
known_bugs.txt · Last modified: 2024/02/08 13:40 by admin
Recent changes RSS feed Creative Commons License Valid XHTML 1.0 Valid CSS Driven by DokuWiki
Drupal Garland Theme for Dokuwiki