Inline-Python icon indicating copy to clipboard operation
Inline-Python copied to clipboard

Inline::Python for Perl 6

Results 16 Inline-Python issues
Sort by recently updated
recently updated
newest added

I get the following from the test ``` ===> Testing: Inline::Python:ver:auth [Inline::Python] This container does not reference a native unsigned integer [Inline::Python] in block at /home/cbwood/.zef/tmp/Inline-Python-0.5.tar.gz/Inline-Python-0.5/lib/Inline/Python.pm6 (Inline::Python) line 236 [Inline::Python]...

right now seems that this exclusion is needed for every install

## The Problem ### Foo.rakumod: ``` use Bar; use Baz; ``` ### Bar.rakumod ``` use Inline::Python; ``` ### Baz.rakumod ``` use Inline::Python; ``` and doing: raku -I. -MFoo -e ''...

I am unable to install Inline::Python. ``` > perl6 -v This is Rakudo version 2019.03.1 built on MoarVM version 2019.03 implementing Perl 6.d. ``` ``` > zef --version v0.7.3 ```...

Python 2.7 is currently installed on my system, and python2-config is not available. Here is the output from my attempt at installation: ``` $ zef install --exclude=python2-config Inline::Python ===> Searching...

Hi, (I'm not installing to Docker container, otherwise this might be similar to Issue#26) My zef is up-to-date (ver 0.42) and perl6 is Rakudo Star 2018-04 (in local dir /home/....)...

At first I was having problems with it not being able to locate the header files "Python.h" and "timedate.h", but I just manually pointed "pythelper.c" to these files using the...

Hi there, I am trying to install `Inline::Python` in [this docker image](https://hub.docker.com/r/sumdoc/perl-6-notebook/) which I believe has all the requisites (`gcc` `make` `python-dev` )to install this module. When I try to...

I can't seem to return any Python `datetime.date` objects, they all come back as `Any`. This is what I've tried: use v6; use Inline::Python; my $py = Inline::Python.new; $py.run('import datetime');...