27,745
questions
0
votes
0
answers
14
views
DLL load failed while importing win32crypt
When I try to import win32crypt, I immediately get the following error:
builtins.ImportError: DLL load failed while importing win32crypt: The specified procedure could not be found.
This link appears ...
1
vote
0
answers
12
views
Export/Import Issue: "Root articles must have internal permission"
I'm looking to export Knowledge articles out of Odoo 17 and import them into Odoo 18. When testing before performing the actual import, I receive the following error message:
The file contains ...
0
votes
0
answers
9
views
pymilvus import data failed with parquet reader failed
I am following steps to import data to milvus db from Import data.
Below is my script to create schema and prepare data.
milvus_db/import_test.py
import random
import string
from pymilvus import ...
-3
votes
1
answer
58
views
Imports suddenly stopped working in python
I was trying to make a discord bot. It was working fine upto this afternoon when I closed the editor for the day. But now when I opened it again, it is showing three warning flags (yellow squiggly ...
0
votes
0
answers
37
views
Why does the following code cause an import conflict?
library(stats, exclude = c("filter", "lag"))
library(tidyverse)
causes
── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
✔ dplyr 1.1.4 ✔ ...
1
vote
1
answer
96
views
_tkinter.TclError when trying to import FreeSimpleGUI and running it in PyCharm
I am trying to create a desktop GUI by importing FreeSimpleGUI by using the code below:
import FreeSimpleGUI
That code produced the following error:
Traceback (most recent call last):
File "C:\...
0
votes
1
answer
58
views
Imported python function works when imported from module 1 but fails when imported from module 2
I have a weird problem I would like to understand. I wrote a simple genetic code to guess the pair of letters "ab". There is a loop that uses a function that generates random candidates as ...
0
votes
0
answers
14
views
sorting Typescript imports using `type` keyword with ESLint
I just can't find anything on how to configure this, if it's possible. In this example, I wan't the type imports grouped together. The docs indicate it's possible but I get errors about no more ...
1
vote
0
answers
2k
views
how to specify hidden import like 'from XXX import YYY as ZZZ' to pyInstaller?
dear all:
I have been trying to solve the problem of using pyinstaller for pyd files when the packaged EXE file cannot find some imports in the pyd files.
Then I found some suggestions of using --...
0
votes
0
answers
47
views
How can i access another class Variable while avoiding circular import?
Small introduction:
Hello guys i've been coding in python for like 1 month with some previous coding experience in C and a bit of C#.
I've done many project so far cause i think it's probably the best ...
0
votes
1
answer
28
views
Vite module loader lacks file extension
In a Sveltekit app (which uses Vite) I use a library, that has an export like this inside its dist folder:
my-app/node_modules/some-lib/dist/foo/index.js
export * from './some-component
So it is a ...
2
votes
2
answers
73
views
Bulk Java Project Module Import in Intellij IDEA
I have 71 plain Java projects in a folder. In Eclipse, I can use the 'import existing projects into workspace' feature to load all Java projects into my Eclipse instance at once.
Is there a similar ...
0
votes
0
answers
44
views
Dealing with confidential modules in a Python code: are conditional imports possible?
Let say I have a Python code with a src source folder. Inside this folder is a subfolder confidential (typically a git submodule) that is confidential and only selected users of the code can access.
I ...
1
vote
0
answers
44
views
How to import .OUT file created by C program into RStudio
I'm running Hazard function code which is written C program. In the end the C program provides a a.OUT file which contains text and some tables information. The table should be imported as a data ...
0
votes
2
answers
38
views
Importing a file from a different folder
I have the folder structure
├── project-main
└── assets
└── player.py
└── map.py
How do I import map.py into player.py
I tried
from map import *, which didn't work
I also tried
from project-...