ASE Home Page Products Download Purchase Support About ASE
ChartDirector General
Forum HomeForum Home   SearchSearch

Message ListMessage List     Post MessagePost Message

  Chartdirector on anaconda
Posted by AS on Aug-31-2015 22:25
I have to work in an anaconda (python) environment. How can I install chartdirector in this
environment? Is there a pypi package?

  Re: Chartdirector on anaconda
Posted by Peter Kwan on Sep-01-2015 05:30
Hi AS,

I have not used anaconda before. However, in general, ChartDirector can be installed just
like any other Python files. In the simplest case, you can just copy everything in the
"ChartDirector/lib" directory to your own script directory, or to any directory in the Python
search path.

For example, suppose someone writes a library for converting between RGB and CMYK
colors, and the library is just one python file. To use the library, you can either copy that
file to your own script directory (in which case your script can use the file), or to a
directory in the Python search path (in which case any script can use that file).
ChartDirector can be installed in the same way - by copy "ChartDirector/lib" to your own
script directory, or to any directory in the Python search path.

Hope this can help.

Regards
Peter Kwan

  Re: Chartdirector on anaconda
Posted by AS on Sep-02-2015 02:47
solved. thanks