PluginMissingError due to vertical_demo in OpenEdx - python

I want to install xblock sdk and followed this tutorial
Xblock installation
But, now I am facing PluginMissingError due to vertical_demo. Any pointers appreciated.

Exploring the cause of this problem, I have came to discussion and found the solution on Google groups that solves my problem. Here is the link:
xblock pluginmissingerror
It says that you need to run make install command in xblock-sdk directory.

Related

Having a hard time installing Julia (IJulia + Python)

I am struggling with installing "IJulia" in Julia. I tried Pkg.add("IJulia") and .build("IJulia")
but there must be some problem going on with this part it keeps saying
"LoadError: Failed to precompile Parsers
[69de0a69-1ddd-5017-9359-2bf0b02dc9f0] to
C:\Users\박원정.julia\compiled\v1.4\Parsers\833b9_AFua3.ji."
It would be much appreciated if someone can help me with resolving this problem...
On the first run IJulia is installing Jupyter. Having bad luck this might fail.
Once you perform the already suggested deleting .julia\compiled, you can try installing Jupyter into your Julia manually (this is something I do when providing Jupyter installation instructions for large groups of people and is tested to work each time on many machines and environments):
using Pkg
pkg"add Conda"
using Conda
Conda.runconda(`install jupyter --yes`)
pkg"add IJulia"
pkg"precompile"

How to solve ImportError: dlopen(): Symbol not found:.... Expected in: flat namespace

Can anyone help me solve this issue?
ImportError: dlopen(/Users/......./venv/lib/python3.6/site-packages/recordclass/mutabletuple.cpython-36m-darwin.so, 2): Symbol not found: __PyEval_GetBuiltinId
Referenced from: /Users/......./venv/lib/python3.6/site-packages/recordclass/mutabletuple.cpython-36m-darwin.so
Expected in: flat namespace
in /Users/......../venv/lib/python3.6/site-packages/recordclass/mutabletuple.cpython-36m-darwin.so
I'm using a Mac if that's of any relevance
I couldn't quite figure out what the issue was but I'm assuming __PyEval_GetBuiltinId was broken/uninstalled.
So all I did to fix this was pip uninstall recordclass and then pip install --no-cache-dir recordclass and it seemed to have worked
I encountered the same problem and found your question. I have an M1 MacBook, but I think we're encountering 2 problems.
At first, I had a similar error to yours:
ImportError> dlopen(): Library not found
What I did to fix this error was 'brew install ___' the library that was missing, in my case it was tesseract. After I brew installed it again I ran my script and got a new error. This time I had a
no suitable image found: imageXXX found but wrong architecture
So what I think may be happening is there is an underlying error with the compatibility between our M1 chips and the brew install-ed formulaes. I'm currently trying to find a solution. The first I'm going to try is resetting my installation from scratch and, if that doesn't work, look at alternatives. Ultimately I think what will solve the problem is installing from source like is described on the OpenCV website: https://docs.opencv.org/master/d0/db2/tutorial_macos_install.html.
Hope this helped!
EDIT
I just finished uninstalling Homebrew completely and the reinstalling it from scratch, both casks, formulae, EVERYTHING! And it seems to work. I got both Tensorflow and OpenCV to work (they both printed their versions and I ran a simple camera test on OpenCV)
This issue is well described here. I had the same issue with the NetCDF4 library in the macOS M1 chip.
In my case (NetCDF4#1.5.8) installing the library using brew and pip didn't solve the problem as the provided package wasn't compatible with the M1 chip.
The issue will solve as mentioned in their Github in NetCDF#1.6.0.
In such cases, I recommend:
First make sure that you install dependencies of the library (in this case recordclass) that you are using in your system in case you are using a virtual environment, not just in the environment.
Second check if the wheel of the library meets your machine requirements.

Wierd StaticCompilationError caused by django-static-precompiler

On project we use django-static-precompiler and scss. When I ran localy got this weird error that points to nothing literally. No info at internet or references at docs. I thought it connected to sass packecge but it already installed at my system.
OR
Just install the newest version

Installing SerpentAI error

I'm trying to install SerpentAI, and I've followed the steps word for word (except the Redis one), but I keep getting this error.
I think it's because I didn't install Redis, but I don't know how to do that. I downloaded it from GitHub, but I'm not sure what to do with it.
Here's a link to the documentation I was following, if it helps. I was right at the "run pip install serpentai"
Thanks so much!

Can't install PyDev for Eclipse Indigo

I have problem with installation of PyDev in Eclipse Indigo. I used Help -> Install new software -> and http://pydev.org/updates repository. I try it for 3 days yet but it is still not work. First, I got error: unabled to read repository.
Today, repository was found but during installation of package I got error:
An error occurred while collecting items to be installed
session context was:(profile=epp.package.java, phase=org.eclipse.equinox.internal.p2.engine.phases.Collect, operand=, action=).
Unable to read repository at http://update-production-pydev.s3.amazonaws.com/pydev/updates/plugins/org.python.pydev_2.2.2.2011082312.jar.
Read timed out
Unable to read repository at http://update-production-pydev.s3.amazonaws.com/pydev/updates/plugins/org.python.pydev.debug_2.2.2.2011082312.jar.
Read timed out
Unable to read repository at http://update-production-pydev.s3.amazonaws.com/pydev/updates/plugins/org.python.pydev.jython_2.2.2.2011082312.jar.
Read timed out
It seems like the repository is out of order. Does somebody know, what to do? Thanks!
use http://update-production-pydev.s3.amazonaws.com/pydev/updates/site.xml
Just checked and it seems to be working. As a note, a new PyDev release is available (2.2.3).
If it still doesn't work for you, you can try the zip release (see: http://pydev.org/download.html for instructions on getting/installing it).
I had this problem, but updating eclipse fixed it
Using this url https://dl.bintray.com/fabioz/pydev/6.3.2 worked for me.
Got this from http://www.pydev.org/updates/

Categories