vs Intellicode not working for python [ vs code extension] - python

I am trying to get vs intellicode up and running for python and there were no errors in installation.
However, I am not seeing any starred suggestions.
I did some research and found that ReSharper may cause the problem but I dont have resharper installed.
but when i checked the output of the python language server output, it read the following:
Current invocation parsing returned null, aborting IntelliCode recommendation!
I guess thats the problem.
Any solutions to get it up and running?
Thanks, in advance.

Had same problem with python in WSL. Try to disable the deeplearning model from the extension's settings.
See https://github.com/MicrosoftDocs/intellicode/issues/191#issuecomment-647699535

Related

code execution cannot complete as python38.dll not found

i have no idea what i have done to cause this but when running C:>python .... (image 1) i get this error (image two)
i've tried repairing the install and running a full scan for any viruses and it's all going normal but then i still get this error
image 1:
image 2:
i'd just like to thank anyone who may be able to help in advance too!
When you type py command Python 3.9.2 is launched. However, when you type python the error message shows that python38.dll wasn't found which is a different version. It seems like you had different versions of Python and maybe some uninstallation process went wrong.
Are you able to check what do you have on PATH? The issue might be there. You can also try to uninstall all Python-related apps and install a fresh Python 3.9

Error in calling a Python script from a Basic function

I am new in Python and Basic. I am trying to replicate the IMPORTHTML function from Google Sheets in LibreOffice (LO) Calc. In a nutshell, I want to create a GetHtmTable( Url, Table Index) Basic function in Calc which will call a Python script to do the heavy work.
So based on Villeroy's great example, I implemented in LO 5.1.6.2. the Basic SOUNDEX function which calls the Python script sheetFunctions.py to get familiar with the process. My environment is Linux Mint 18, I use Python 3, I imported all kind of libraries such as Uno, PIP etc.. I use PycharmProjects as a Python editor.
I see clearly under the LO Calc menu tools->macro->organize macros->python the sheetFunctions.py Python script, which indeed is in the folder /usr/lib/libreoffice/share/Scripts/python.
Whenever, I run the SOUNDEX Basic function I see the following error message:
BASIC runtime error. An exception occurred Type:
com.sun.star.script.provider.ScriptFrameworkErrorException Message:
: an
error occurred during file opening
/usr/lib/libreoffice/program/pythonscript.py:429 in function
getModuleByUrl() [lastRead = self.sfa.getDateTimeModified( url )]
/usr/lib/libreoffice/program/pythonscript.py:993 in function
getScript() [mod = self.provCtx.getModuleByUrl( fileUri )]
I tried to debug the SOUNDEX basic function and found out the blocking point is when the program runs getScript("vnd.sun.star.script:sheetFunctions.py$soundex?language=Python&location=user").
I've been trying for days now to overcome this error, unsuccessfully I must confess.
I wonder if I need to bring some extra extensions in the Basic environment or a missing add-in in the Linux/Python one?
I changed the location=user by location=document and got stuck again. I added recently libreoffice-script-provider-python thanks to the command sudo apt-get install libreoffice-script-provider-python but this did not help. I also embedded in the Calc document the Python script but same this did not solve the issue.
The location name does not match. The standard place for self-written scripts is under the user directory. This is location=user, for example ~/.config/libreoffice/4/user/Scripts/python.
Then there is location=share, which refers to the path in your question. These parameters are described under Python Script in the URI Specification.
See also my answer to this question. Be sure to try the APSO extension if you haven't yet. Especially, APSO helps when using location=document, because embedding requires several steps including editing manifest.xml.

vim : Gundo error

Since a while I have not use Gundo. Today, I have an error in my code and would like to go back on other "branch" using Gundo. But when I start Gundo, I have this error message : Gundo requires Vim to be compiled with Python 2.4+ and Gundo is not working anymore. Can someone help please ?
It seems that Gundo can't work without python 2.4. The workaround I found is to use undotree git repos here. It is cool because it recognizes my gundo log, so that I don't loose anything.

The application has failed to start because python33.dll was not found

I am working on project by using boost python and visual studio 2005. when i debug a simple hello world example the folowing error window appear.
The application has failed to start because python33.dll was not found.Reinstalling the application may fix this problem
Can somebody please tell its error on Python or on windows regisrty.Beacause i reinstall Python but error is still there.
Thanks.
For Removing this error set the environoment varaible for both Python and also for Boost Python by folowing ways.
1.Right click on the project and select Properties.
2.Inside the Configuration Properties ,select Debugging and set the Environment with Python 3 and Boost Python 1_54 with following commands
**PATH=%PATH%;c:\python33;C:\boost_1_54_0\stage\lib**

How do I tell Pig what a PyObject is?

I have a Pig script that uses a Python UDF. It worked two days ago, but then someone updated Apache Pig to version 0.11.0-cdh4.3.0. Since then I get this error:
ERROR 2998: Unhandled internal error. org/python/core/PyObject
I have tried having the HADOOP_CLASSPATH, as mentioned in this post, updated with the Jython jar, but that does not change anything. I did log out and back in, but the same error happens. All of the scripts running Java UDFs work fine. I also tried registering the jython.jar in my script. Any help would be appreciated!
Try adding $PIG_HOME/lib/jython.jar to your $PIG_CLASSPATH environment variable.

Categories