pyflow icon indicating copy to clipboard operation
pyflow copied to clipboard

Problem getting dependency data on init.

Open willwade opened this issue 2 years ago • 0 comments

Windows 10 I keep getting this "problem getting dependency data"

My requirements file looks like this btw: https://github.com/willwade/project-gameface/blob/nsis-installer/requirements.txt

I cant get further than this. Maybe the same as #189

PS C:\GitHub\project-gameface> pyflow init
Please enter the Python version for this project: (eg: 3.8)
Default [3.11.0]:3.8
Created `pyproject.toml`
Downloading Python 3.8.0...
Installing Python 3.8.0...
Setting up Python...
Aborting graph creation: Problem getting dependency data
 Reqs: [
    Req {
        name: "psutil",
        constraints: [
            Constraint {
                type_: Caret,
                version: 5.4.3,
            },
        ],
        extra: None,
        sys_platform: None,
        python_version: None,
        install_with_extras: None,
        path: None,
        git: None,
    },
    Req {
        name: "PyAutoGUI",
        constraints: [
            Constraint {
                type_: Caret,
                version: 0.9.53,
            },
        ],
        extra: None,
        sys_platform: None,
        python_version: None,
        install_with_extras: None,
        path: None,
        git: None,
    },
    Req {
        name: "mediapipe",
        constraints: [
            Constraint {
                type_: Exact,
                version: 0.9.3.0,
            },
        ],
        extra: None,
        sys_platform: None,
        python_version: None,
        install_with_extras: None,
        path: None,
        git: None,
    },
    Req {
        name: "matplotlib",
        constraints: [
            Constraint {
                type_: Caret,
                version: 3.7.1,
            },
        ],
        extra: None,
        sys_platform: None,
        python_version: None,
        install_with_extras: None,
        path: None,
        git: None,
    },
    Req {
        name: "flatbuffers",
        constraints: [
            Constraint {
                type_: Exact,
                version: 2.0.0,
            },
        ],
        extra: None,
        sys_platform: None,
        python_version: None,
        install_with_extras: None,
        path: None,
        git: None,
    },
    Req {
        name: "opencv-python",
        constraints: [
            Constraint {
                type_: Caret,
                version: 4.7.0.72,
            },
        ],
        extra: None,
        sys_platform: None,
        python_version: None,
        install_with_extras: None,
        path: None,
        git: None,
    },
    Req {
        name: "sounddevice",
        constraints: [
            Constraint {
                type_: Exact,
                version: 0.4.6,
            },
        ],
        extra: None,
        sys_platform: None,
        python_version: None,
        install_with_extras: None,
        path: None,
        git: None,
    },
    Req {
        name: "pywin32",
        constraints: [
            Constraint {
                type_: Caret,
                version: 306,
            },
        ],
        extra: None,
        sys_platform: None,
        python_version: None,
        install_with_extras: None,
        path: None,
        git: None,
    },
    Req {
        name: "customtkinter",
        constraints: [
            Constraint {
                type_: Caret,
                version: 5.1.3,
            },
        ],
        extra: None,
        sys_platform: None,
        python_version: None,
        install_with_extras: None,
        path: None,
        git: None,
    },
    Req {
        name: "PyDirectInput",
        constraints: [
            Constraint {
                type_: Caret,
                version: 1.0.4,
            },
        ],
        extra: None,
        sys_platform: None,
        python_version: None,
        install_with_extras: None,
        path: None,
        git: None,
    },
    Req {
        name: "opencv-contrib-python",
        constraints: [
            Constraint {
                type_: Caret,
                version: 4.7.0.72,
            },
        ],
        extra: None,
        sys_platform: None,
        python_version: None,
        install_with_extras: None,
        path: None,
        git: None,
    },
]
             It's taking a long time to get dependency data - this usually suggests that the dependency tree is being newly built. Please try again in a few minutes, and if the error still occurs, consider opening an issue on github.

willwade avatar May 14 '23 20:05 willwade