Displaying 9 results from an estimated 9 matches for "mcdowall".
2015 Sep 14
2
Re: Issue with python pip install
...w builds and installs with pip.
Thanks for all your help most appreciated.
Is there a better way to do this?, #ifdefs always seem a little hacky.
Regards
John
On 9/14/15, 12:47 PM, "Richard W.M. Jones" <rjones@redhat.com> wrote:
>On Mon, Sep 14, 2015 at 07:06:48PM +0000, John McDowall wrote:
>> Richard,
>>
>> It is looking better, but still getting error - see attached log.
>>
>> I removed all installed packages and yum installed libguestfs
>> libguestfs-devel (1.28.1)
>>
>> Then reset my git repository to 1.28.1 and then
>&g...
2015 Sep 14
2
Re: Issue with python pip install
...isable-erlang --disable-perl --disable-lua --disable-ruby
$ make
$ make -C python sdist
$ cd python/dist
$ sudo pip install guestfs-1.28.1.tar.gz
Regards
John
On 9/14/15, 11:21 AM, "Richard W.M. Jones" <rjones@redhat.com> wrote:
>On Mon, Sep 14, 2015 at 06:12:27PM +0000, John McDowall wrote:
>> Richard,
>>
>> Thanks for fast reply - let me remove all the yum packages and then
>> build/install from single version.
>
>I would avoid using 'make install' in the libguestfs git repo.
>
>A better plan may be to roll back the git repo to matc...
2015 Sep 14
2
Re: Issue with python pip install
Richard,
Thanks for fast reply - let me remove all the yum packages and then
build/install from single version.
Regards
John
On 9/14/15, 11:06 AM, "Richard W.M. Jones" <rjones@redhat.com> wrote:
>On Mon, Sep 14, 2015 at 05:48:24PM +0000, John McDowall wrote:
>> I am trying to build a Python application installer that is using
>>libguestfs. I using the instructions to create the python package posted
>>at
>>
>>
>>https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_libguestf
>>s_libguestfs_co...
2015 Sep 14
3
Issue with python pip install
I am trying to build a Python application installer that is using libguestfs. I using the instructions to create the python package posted at
https://github.com/libguestfs/libguestfs/commit/fcbfc4775fa2a44020974073594a745ca420d614
I am getting errors in the compile when I do the "pip install”. I have attached the output from pip. I looked at the code and I do not see anything obvious)
When
2015 Sep 14
0
Re: Issue with python pip install
On Mon, Sep 14, 2015 at 05:48:24PM +0000, John McDowall wrote:
> I am trying to build a Python application installer that is using libguestfs. I using the instructions to create the python package posted at
>
> https://github.com/libguestfs/libguestfs/commit/fcbfc4775fa2a44020974073594a745ca420d614
>
> I am getting errors in the compile...
2015 Sep 14
0
Re: Issue with python pip install
On Mon, Sep 14, 2015 at 06:12:27PM +0000, John McDowall wrote:
> Richard,
>
> Thanks for fast reply - let me remove all the yum packages and then
> build/install from single version.
I would avoid using 'make install' in the libguestfs git repo.
A better plan may be to roll back the git repo to match the version of
libguestfs you...
2015 Sep 14
0
Re: Issue with python pip install
On Mon, Sep 14, 2015 at 07:06:48PM +0000, John McDowall wrote:
> Richard,
>
> It is looking better, but still getting error - see attached log.
>
> I removed all installed packages and yum installed libguestfs
> libguestfs-devel (1.28.1)
>
> Then reset my git repository to 1.28.1 and then
>
> $ make clean
> $ ./autog...
2015 Sep 14
0
Re: Issue with python pip install
On Mon, Sep 14, 2015 at 09:45:16PM +0000, John McDowall wrote:
> Richard,
>
> I put an #ifdef around the logic in py_guestfs_mount_9p and
> py_guestfs_list_9p, I.e. Left the signatures but the functions just return
> a a NULL PyObject. It now builds and installs with pip.
> Thanks for all your help most appreciated.
>
> Is ther...
2009 Oct 09
1
Get subset of n dimensional matrix
I want to select a subset of an array, but I want to make a function so that
it can handle any number of dimensions.
This is probably best described with an example
> x <- 1:100
> dim(x) <- c(10,10)
> x
[,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10]
[1,] 1 11 21 31 41 51 61 71 81 91
[2,] 2 12 22 32 42 52 62 72 82 92
[3,]