• This is a reminder of 3 IMPORTANT RULES:

    1- External self-promotion websites or apps are NOT allowed here, like Discord/Twitter/Patreon/etc.

    2- Do NOT post in other languages. English-only.

    3- Crack/Warez/Piracy talk is NOT allowed.

    Breaking any of the above rules will result in your messages being deleted and you will be banned upon repetition.

    Please, stop by this thread SoccerGaming Forum Rules And Guidelines and make sure you read and understand our policies.

    Thank you!

[SE7EN] FIFA 3D Importer Exporter (Updated Version - Blender 2.8x)

Is Blender 2.69 - 2.71 beginner friendly?

  • Yes

  • No

  • Have never used it


Results are only viewable after voting.

Delpi81

Club Supporter
FOR THOSE HAVING THE "No module named 'clr'" ISSUE:

I FOUND HOW TO FIX THIS.

FIRST, YOU NEED TO INSTALL PYTHON 3 AT THE PYTHON WEBPAGE:
https://www.python.org/downloads/

THEN PRESS WINDOWS + R ON THE KEYBOARD, SHOULD APPEAR THIS WINDOW:
View attachment 136761
TYPE ON IT 'cmd'

THIS IS GOING TO OPEN CONSOLE COMMAND

WRITE THIS ON CONSOLE COMMAND:
pip install clr
Press Enter

Should appear this:
View attachment 136763

pip install pythonnet
Press Enter

Should appear this:
View attachment 136764

THIS WORKED FOR ME, HOPES IT WORKS FOR Y'ALL ^^
Not working for me.
It's appear: "pip is not recognized as an internal or external command, an executable program, or a batch file"
 

Attachments

  • Pip.jpg
    Pip.jpg
    23.2 KB · Views: 88

Mettalica

Club Supporter
FOR THOSE HAVING THE "No module named 'clr'" ISSUE:

I FOUND HOW TO FIX THIS.

FIRST, YOU NEED TO INSTALL PYTHON 3 AT THE PYTHON WEBPAGE:
https://www.python.org/downloads/

THEN PRESS WINDOWS + R ON THE KEYBOARD, SHOULD APPEAR THIS WINDOW:
View attachment 136761
TYPE ON IT 'cmd'

THIS IS GOING TO OPEN CONSOLE COMMAND

WRITE THIS ON CONSOLE COMMAND:
pip install clr
Press Enter

Should appear this:
View attachment 136763

pip install pythonnet
Press Enter

Should appear this:
View attachment 136764

THIS WORKED FOR ME, HOPES IT WORKS FOR Y'ALL ^^
I have successfully installed the clr module, but it still doesn't work?
 

nader47

Club Supporter
guys can someone explain how to install, i tried many times with different blender versions and did not work, i put the zip file in my documents then i go to preferences then addon then i install it and i got message modules installed successfully, but nothing change
 

pe pe

Club Supporter
Ok still no success, however I progress past the "clr is not defined" phase. You need to uninstall clr because it conflicts with pythonnet (i.e. clr standalone doesn't have method "addReference" that this addon uses etc.). But the uninstall process is different depending whether you are using portable Blender version or not. If you are using standard installation of Blender, run command "pip uninstall clr" in cmd and you are good to go. But if you are using portable Blender it is slightly more complicated - you need to add custom script to blender and run this script (sorry for pasting without formatting, but the code option on forum doesn't work for me for some reason):

import bpy
import subprocess
import ensurepip
print("\n"*10)
import sys ensurepip.bootstrap()
pybin=sys.executable
subprocess.check_call([pybin, '-m', 'pip', 'uninstall', 'clr'])

After uninstalling clr now I have new error that I am unable to solve: System.IO.FileNotFoundException: "FIFALibrary_v22.02.11_x64_Beta". The file is missing.

Any idea where this file should be located? Frome the source code i see that addon tries to unpack tar archive from fifa_tools/libs but is unable to.

Anyway. This tool doesn't have export function, does it?
 


Top