Skip to main content

 

Hello,

I have installed a fresh install of FME Form 2023.2.2 on a Ubuntu VM with Azure. When running workspaces on FME Form 2023.2.2 with workbench, everything runs smooth. I have imported a manual license to the licensing assistant.

However, I am trying to also install some python packages on this Linux VM. So we can transfer this to our Kubernetes Environment which also runs on Linux. We cannot install these packages on a Windows Machine cause they won't work on the Linux.

Script: sudo /opt/fme-form-2023/fme fme -m pip install pandas --system --target /home/adminnordend/.fme/Plugins/Python/python310 After running this command we get the following Error: FME license system failure: FME is not licensed for this machine. Please launch FME Licensing Assistant to install a license. If you require more assistance, please send the following information to your local Safe Software Partner or codes@safe.com. Your registration key is 3-246-191-769. Program Terminating

But the system is licensed. We have tried reinstalling the license, and removing and installing it again to no avail. 

Hello @marnickcle 

I noticed there is an extra 

fme
 and a missing 
python
 in the command you shared. The correct command should be:
sudo /opt/fme-form-2023/fme python -m pip install pandas --system --target /home/adminnordend/.fme/Plugins/Python/python310 

Another test is to try installing Python packages without elevated privileges (ie. without sudo) and without the 

--system
 flag.

Hello @marnickcle 

I noticed there is an extra 

fme
 and a missing 
python
 in the command you shared. The correct command should be:
sudo /opt/fme-form-2023/fme python -m pip install pandas --system --target /home/adminnordend/.fme/Plugins/Python/python310 

Another test is to try installing Python packages without elevated privileges (ie. without sudo) and without the 

--system
 flag.

Thank you so much @debbiatsafe this did the trick!


Reply