-
Notifications
You must be signed in to change notification settings - Fork 381
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is pip3 installation possible yet? #8305
Comments
@EfimovVladimir Can you verify this please? |
@Berezhnyk does it help you if you will install python like |
@Berezhnyk could you try to install beakerx on new conda environment with python 3.7.5 and openjdk=11.0.1 like
|
Dear all, My original question was simple: is it yet possible to install BeakerX 2.* by pip3? Thanks :-) |
installation error with pip reproduced for me too
|
Same problem here. Is it possible to compile the code from source (e.g. v1.5) and install it from there? What steps are necessary? |
Same error as @Berezhnyk and I tried all the following, still does not work.
Anyone could help? |
I was able to clone the repo and pip install the beakerx_widgets package: https://github.com/twosigma/beakerx_widgets/tree/master/beakerx_widgets pip install beakerx_all still breaks though so you'll have to manually install the other sub-packages. |
Hi, I am also experiencing this when trying to install through pip (I have no other option):
Is there a way to get the widgets package on pypi? Would be awesome :-) |
@posenato You mentioned having to install the ijava kernel but this isn't necessary. This should be sufficient (provided you have openjdk installed) to run jupyterlab with beakerx java kernel:
I am also trying to install beakerx with pip and figured this out by looking at https://github.com/twosigma/beakerx_kernel_java#readme |
@priggad One year ago, |
Hi,
I would like to use beakerx with Python and Java kernels.
I tried to install it via pip3 on my MacBook but I noted that not everything works well.
SUMMARY OF ISSUE
beakerx-widgets does not exist!
3. In order to use Java kernel, I had to install IJava (https://github.com/SpencerPark/IJava)
4. With such configuration, Java input is not possible in Java cells when the kernel is Python and magic is
%java
So, the short question is the one in the subject: Is pip3 installation possible yet?
LONG HISTORY
Currently, if I search
beakerx
via pip3, I obtain:If I install
pip3 install beakerx
, the program installsbeakerx
andbeakerx-base
.Then, I supposed that it was necessary to install
beakerx-kernel-java
to have Java kernel. I did it, but the kernel was not installed.Then, I tried to install
beakerx-all
, but it raised the errorIn the above list, the package
beakerx-widgets
does not exist.A Java kernel can be installed considering IJava (https://github.com/SpencerPark/IJava).
With such a kernel, everything seems to work.
The only big issue is when in a Java cell (
%java
), there is code for reading a user input likesc = Scanner(System.in); sc.nextInt();
Executing the cell, the notebook does not present the input form and freezes.
If I use IJava kernel, everything works well.
The text was updated successfully, but these errors were encountered: