Solved

Default loaded Python modules?

  • 17 March 2021
  • 4 replies
  • 7 views

Badge +4

1) I am looking for a list of modules that come default with FME 2020.2 install.

2) What is the default directory for python and python modules?

Thank you,

Tyler

FME2020.2

 

icon

Best answer by rahulsharma 17 March 2021, 17:40

View original

4 replies

Badge +8

Hi @townest​ 

FME Python directory is located here FME_HOME\\python ( so on my machine its C:\\Program Files\\FME_2020.2\\python)

Badge +4

Hi @townest​ 

FME Python directory is located here FME_HOME\\python ( so on my machine its C:\\Program Files\\FME_2020.2\\python)

Thank you.

Userlevel 3
Badge +17

Hi @townest​ 

You should be able to use the pip list functionality to get a list of modules that comes with an FME install.

In Windows Command Prompt, enter (substitute <FME_HOME> for the FME install directory ): 

<FME_HOME>\fme.exe python -m pip list

Note the output does not include the Python standard library.

Badge +4

Hi @townest​ 

You should be able to use the pip list functionality to get a list of modules that comes with an FME install.

In Windows Command Prompt, enter (substitute <FME_HOME> for the FME install directory ): 

<FME_HOME>\fme.exe python -m pip list

Note the output does not include the Python standard library.

Great.  That was part one of the question.  I'll give that a go.  Thank you.

Reply