Python Forum
package installing problem
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
package installing problem
#6
These are standard traditional configure/build/install steps to install C based programs. Under linux, I would simply download the tree in a directory, say ffea_src, check that the dependancies are installed, then open a terminal and run one after the other the commands
Output:
mkdir ffea_build cd ffea_build cmake ../ffea_src make make test sudo make install
In Windows, I guess you can do something similar in a Cmd window after installing the appropriate building tools, but it's all I can tell.

After these steps, it remains only to add ffea's bin directory to the PATH environment variable and modify sys.path in python which I would do by updating a sitecustomize.py file instead of the suggested setting of the PYTHONPATH variable.
Reply


Messages In This Thread
package installing problem - by CatherineKan - Jul-12-2020, 07:53 PM
RE: package installing problem - by Gribouillis - Jul-12-2020, 08:06 PM
RE: package installing problem - by CatherineKan - Jul-13-2020, 05:23 PM
RE: package installing problem - by Gribouillis - Jul-13-2020, 07:42 PM
RE: package installing problem - by CatherineKan - Jul-14-2020, 01:14 PM
RE: package installing problem - by Gribouillis - Jul-14-2020, 01:58 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  want to get package documentation from pip without installing Skaperen 2 2,252 Aug-12-2019, 05:35 AM
Last Post: Skaperen

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020