problem with data.Store and JSON data - Ext JS

I've been looking up the forums and trying for a few days but still can't get my JSON data to "go inside" data store. :cry:

Here's the code:

function populate(myData)
{
	var _PAGESIZE = 10;
	
	var Expense = Ext.data.Record.create([
		{name: 'id', mapping: 'id'},
	        {name: 'category', mapping: 'category'},
	        {name: 'description', mapping: 'description'}
	    ]
	  
	);

       var reader = new Ext.data.JsonReader(
    									{	root: 'data',
        									totalProperty: 'recordcount',
        									id: 'id'
        								}, 
        								Expense);
	
	var ds = new Ext.data.Store({
		        proxy: new Ext.data.MemoryProxy(myData),
		        reader: reader,
		        remoteSort: true
			        });
	
   
        ds.setDefaultSort('category', 'desc');

	
       var cm = new Ext.grid.ColumnModel([
       {
           header: "Category",
           dataIndex: 'category',
           width: 100
        },{
           header: "Description",
           dataIndex: 'description',
           width: 200
        }
        ]);

    cm.defaultSortable = true;
	
    var grid = new Ext.grid.Grid('myGrid', {
        ds: ds,
        cm: cm,
        selModel: new Ext.grid.RowSelectionModel({singleSelect:true}),
        enableColLock:false
    });

    grid.render();

    var gridFoot = grid.getView().getFooterPanel(true);

    var paging = new Ext.PagingToolbar(gridFoot, ds, {
        pageSize: _PAGESIZE,
        displayInfo: true,
        displayMsg: 'Displaying items {0} - {1} of {2}',
        emptyMsg: "No items to display"
    });
	
	ds.load({params:{start:0, limit:_PAGESIZE}});
		
}
Here's the Firebug output of myData, which is of the type "string":

{"recordcount":3,"data":[{"category":"Computer Hardware","description":"whatever","id":"08206FAE-9610-0322-40E109F1CA47E6A5"},{"category":"Legal Fee","description":"ok","id":"08266405-B3EC-A27A-4DB17D714CA5E2B3"},{"category":"Petrol","description":"petrol","id":"0827BE9A-F9F5-D19E-04B52C69BCD10B33"}]}
When I output my ds in firebug, the data is an empty array.

I used to have the grid working using 0.33 (XMLData). But I really want to try out the paging and JSON. I'm most preplexed as to why it's not working.

Please someone solve the mystery for me. Thanking you in advance.
Reply With Quote
  #2  
Old 03-11-2007, 03:41 AM
Default

The only things I can see wrong with your code are:

remoteSort:true - but your data is local and you are using a MemoryProxy.

ds.setDefaultSort('category', 'desc'); - this is for remote sorting. for local data, just call sort.

- Paging doesn't work with local data. You need a server to do data paging.

Let me know if any of these correct your issue.
Reply With Quote
  #3  
Old 03-11-2007, 05:52 AM
Default

Thanks, Jack.

I commented out the lines and still yield no results in the data store.

I will try the server data as well - problem i have with that is it's not very flexible in terms of what i pass in and the re-use of the server code - maybe i just don't know how. I will look at your live search example a bit more.

Another thing is initially my local data was an object obtained from the server using YAHOO's asyncRequest, then I used Ext.util.JSON.encode() to create a JSON string - but of course that didn't work as the JSON Reader requires each row in an object while the encode method (like other JSON encode methods I found on the net) groups ALL data of the same column in an array. So at the end I had to change my code on the server to make my result into a JSON string (using coldfusion) first.

I know that I can just use the array reader and the grid will work for me. But I really would like to see how JSON works and would love to have the paging facility.

By the way, I'm doing all these things for my own enjoyment (mostly torture though haha). When I see something new I itch to try it out. I'm most impressed with your work and can see that very soon a lot of apps out there will have similar interface. Keep up with the good work, and I'll make a donation when I get my next pay cheque. :wink:
Reply With Quote
  #4  
Old 03-11-2007, 06:30 AM
Default

Hey Jack don't worry about it for now - you got more important things to worry about.

I just tried doing this:

var j = {"recordcount":3,"data":[{"category":"Computer Hardware","description":"whatever","id":"08206FAE-9610-0322-40E109F1CA47E6A5"},{"category":"Legal Fee","description":"ok","id":"08266405-B3EC-A27A-4DB17D714CA5E2B3"},{"category":"Petrol","description":"petrol","id":"0827BE9A-F9F5-D19E-04B52C69BCD10B33"}]};
and pass j into data store and it worked!! Man, I'm an idiot.

I'll try to sort it out and definitely will be back here when I'm pulling my hair again!

THANKS!
Reply With Quote
  #5  
Old 03-13-2007, 12:19 PM
Default

Where did you get information for doing this ?

Looking the API DOCS, there's no refererence to:
Ext.data

Any idea ?
Reply With Quote
  #6  
Old 03-13-2007, 12:21 PM
Default

Don't rely exclusively on the docs in the alpha builds. A lot of things are still not documented. You'll have to dig into the code or search the forums for some things.
__________________
Tim Ryan - Ext JS Support Team
Read BEFORE posting a question / posting a Bug
Use Google to Search - API / Forum
API Doc (3.x | 2.x | 1.x) / FAQ / Wiki / Tutorials / 1.x->2.0 Migration Guide
Reply With Quote
  #7  
Old 03-13-2007, 12:27 PM
Default

Where can I see the source code for:
http://www.yui-ext.com/forum2/topics-remote.php ?

I wonder if there's a php class ready-made to work with yui-ext pager.
Reply With Quote
  #8  
Old 03-14-2007, 05:16 AM
Default

See http://www.yui-ext.com/forum/viewtopic.php?t=3286 for a paging grid example.
__________________
Kind regards,
WillyDee

Problems worthy of attack, prove their worth by hitting back.
Reply With Quote
[root@yfw ~]# cd /opt/openfire [root@yfw openfire]# systemctl restart openfire [root@yfw openfire]# tail -f /opt/openfire/logs/openfire.log 2025.10.03 02:45:29.930 INFO [shutdown-thread-0]: org.jivesoftware.openfire.spi.ConnectionListener[component-directTLS] - Stopped. 2025.10.03 02:45:29.935 INFO [shutdown-thread-0]: org.jivesoftware.openfire.spi.NettyConnectionAcceptor[connection_manager] - Closing channel [id: 0x243ebdba, L:/0:0:0:0:0:0:0:0:5262] 2025.10.03 02:45:29.966 INFO [shutdown-thread-0]: org.jivesoftware.openfire.spi.ConnectionListener[connection_manager] - Stopped. 2025.10.03 02:45:29.968 INFO [shutdown-thread-0]: org.jivesoftware.openfire.spi.NettyConnectionAcceptor[connection_manager_ssl] - Closing channel [id: 0xf6262486, L:/0:0:0:0:0:0:0:0:5263] 2025.10.03 02:45:29.979 INFO [shutdown-thread-0]: org.jivesoftware.openfire.spi.ConnectionListener[connection_manager-directTLS] - Stopped. 2025.10.03 02:45:29.979 INFO [shutdown-thread-0]: org.jivesoftware.openfire.http.HttpSessionManager - Stopping instance 2025.10.03 02:45:29.985 INFO [shutdown-thread-0]: org.jivesoftware.openfire.http.HttpBindManager - HTTP bind service stopped 2025.10.03 02:45:29.991 INFO [shutdown-thread-0]: org.jivesoftware.openfire.pubsub.DefaultPubSubPersistenceProvider - Flushing write cache to database 2025.10.03 02:45:29.996 INFO [shutdown-thread-0]: org.jivesoftware.openfire.OfflineMessageStore - Offline message cleaning - Stop old timer if started 2025.10.03 02:45:30.011 INFO [Thread-2]: org.jivesoftware.openfire.XMPPServer - Openfire stopped 2025.10.03 02:45:31.683 INFO [main]: org.jivesoftware.openfire.XMPPServer - Registering shutdown hook (standalone mode) 2025.10.03 02:45:32.162 INFO [main]: org.jivesoftware.util.cache.ConsistencyMonitor - Applying configuration for cache consistency check. Enabled: false 2025.10.03 02:45:32.180 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Routing Servers Cache 2025.10.03 02:45:32.181 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Routing Components Cache 2025.10.03 02:45:32.181 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Routing Users Cache 2025.10.03 02:45:32.181 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Routing AnonymousUsers Cache 2025.10.03 02:45:32.181 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Routing User Sessions 2025.10.03 02:45:32.186 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Roster 2025.10.03 02:45:32.188 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for RosterItems 2025.10.03 02:45:32.216 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Routing Result Listeners 2025.10.03 02:45:32.222 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Multicast Service 2025.10.03 02:45:32.229 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Offline Message Size 2025.10.03 02:45:32.233 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for VCard 2025.10.03 02:45:32.359 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Privacy Lists 2025.10.03 02:45:32.360 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for File Transfer Cache 2025.10.03 02:45:32.436 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Offline Presence Cache 2025.10.03 02:45:32.437 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Last Activity Cache 2025.10.03 02:45:32.452 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for User 2025.10.03 02:45:32.452 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Remote Users Existence 2025.10.03 02:45:32.493 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Components Sessions 2025.10.03 02:45:32.493 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Connection Managers Sessions 2025.10.03 02:45:32.493 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Incoming Server Session Info Cache 2025.10.03 02:45:32.493 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Sessions by Hostname 2025.10.03 02:45:32.493 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Client Session Info Cache 2025.10.03 02:45:32.494 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Directed Presences 2025.10.03 02:45:32.513 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created local-only cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for PEPServiceManager 2025.10.03 02:45:32.514 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for File Transfer 2025.10.03 02:45:32.520 INFO [main]: org.jivesoftware.openfire.pubsub.PubSubPersistenceProviderManager - Loading PubSub persistence provider: class org.jivesoftware.openfire.pubsub.CachingPubsubPersistenceProvider. 2025.10.03 02:45:32.526 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Published Items 2025.10.03 02:45:32.526 INFO [main]: org.jivesoftware.openfire.pubsub.CachingPubsubPersistenceProvider - Loading PubSub persistence provider to delegate to: class org.jivesoftware.openfire.pubsub.DefaultPubSubPersistenceProvider. 2025.10.03 02:45:32.535 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Default Node Configurations 2025.10.03 02:45:32.563 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Disco Server Features 2025.10.03 02:45:32.572 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Disco Server Items 2025.10.03 02:45:32.572 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Components 2025.10.03 02:45:32.807 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created local-only cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Entity Capabilities 2025.10.03 02:45:32.807 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created local-only cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Entity Capabilities Users 2025.10.03 02:45:32.844 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created local-only cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Group (Shared) Metadata Cache 2025.10.03 02:45:32.845 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Group 2025.10.03 02:45:32.845 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Group Metadata Cache 2025.10.03 02:45:32.870 INFO [main]: org.jivesoftware.openfire.pubsub.PubSubModule - 发布–订阅域:pubsub.localhost 2025.10.03 02:45:32.880 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for MUC Service Pings Sent 2025.10.03 02:45:32.882 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for MUC History 2025.10.03 02:45:32.884 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for MUC Service 'conference' Rooms 2025.10.03 02:45:32.885 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for MUC Service 'conference' Room Statistics 2025.10.03 02:45:32.887 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for MUC Service 'lobby' Rooms 2025.10.03 02:45:32.887 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for MUC Service 'lobby' Room Statistics 2025.10.03 02:45:32.897 INFO [main]: org.jivesoftware.openfire.muc.spi.MultiUserChatServiceImpl - Rescheduling user idle task, recurring every PT15M 2025.10.03 02:45:32.903 INFO [main]: org.jivesoftware.openfire.muc.spi.MultiUserChatServiceImpl - 多用户聊天域:conference.localhost 2025.10.03 02:45:32.921 INFO [main]: org.jivesoftware.openfire.muc.spi.MultiUserChatServiceImpl - Rescheduling user idle task, recurring every PT15M 2025.10.03 02:45:32.921 INFO [main]: org.jivesoftware.openfire.muc.spi.MultiUserChatServiceImpl - 多用户聊天域:lobby.localhost 2025.10.03 02:45:32.954 INFO [main]: org.jivesoftware.openfire.XMPPServer - Openfire 4.9.2 [2025年10月3日 上午2:45:32] 2025.10.03 02:45:33.269 INFO [PluginMonitorTask-2]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for DNS Records 2025.10.03 02:45:33.382 INFO [PluginMonitorTask-2]: org.jivesoftware.openfire.spi.EncryptionArtifactFactory - Creating new SslContextFactory instance 2025.10.03 02:45:33.405 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for LDAP UserDN 2025.10.03 02:45:34.183 INFO [main]: org.jivesoftware.openfire.net.SASLAuthentication - Support added for the 'ANONYMOUS' SASL mechanism. 2025.10.03 02:45:34.184 INFO [main]: org.jivesoftware.openfire.net.SASLAuthentication - Support added for the 'CRAM-MD5' SASL mechanism. 2025.10.03 02:45:34.184 INFO [main]: org.jivesoftware.openfire.net.SASLAuthentication - Support added for the 'DIGEST-MD5' SASL mechanism. 2025.10.03 02:45:34.184 INFO [main]: org.jivesoftware.openfire.net.SASLAuthentication - Support added for the 'EXTERNAL' SASL mechanism. 2025.10.03 02:45:34.184 INFO [main]: org.jivesoftware.openfire.net.SASLAuthentication - Support added for the 'GSSAPI' SASL mechanism. 2025.10.03 02:45:34.184 INFO [main]: org.jivesoftware.openfire.net.SASLAuthentication - Support added for the 'JIVE-SHAREDSECRET' SASL mechanism. 2025.10.03 02:45:34.184 INFO [main]: org.jivesoftware.openfire.net.SASLAuthentication - Support added for the 'PLAIN' SASL mechanism. 2025.10.03 02:45:34.184 INFO [main]: org.jivesoftware.openfire.net.SASLAuthentication - Support added for the 'SCRAM-SHA-1' SASL mechanism. 2025.10.03 02:45:34.273 INFO [main]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Remote Server Configurations 2025.10.03 02:45:34.375 INFO [PluginMonitorTask-2]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Favicon Misses 2025.10.03 02:45:34.376 INFO [PluginMonitorTask-2]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Favicon Hits 2025.10.03 02:45:34.414 INFO [PluginMonitorTask-2]: org.jivesoftware.openfire.container.AdminConsolePlugin - 管理控制台正在侦听: http://0.0.0.0:9090 https://0.0.0.0:9091 2025.10.03 02:45:34.418 INFO [PluginMonitorTask-2]: org.jivesoftware.openfire.container.PluginManager - Successfully loaded plugin 'admin'. 2025.10.03 02:45:34.480 INFO [PluginMonitorExec-3]: org.jivesoftware.openfire.container.PluginManager - Successfully loaded plugin 'clientcontrol-2.1.10'. 2025.10.03 02:45:34.523 INFO [PluginMonitorExec-3]: org.jivesoftware.openfire.container.PluginManager - Successfully loaded plugin 'justmarried-1.3.0'. 2025.10.03 02:45:34.548 INFO [PluginMonitorExec-3]: org.igniterealtime.openfire.plugin.mucextinfo.MucExtInfoPlugin - Replacing original IQ Disco Info handlers for all MUC services with proxies. 2025.10.03 02:45:34.558 INFO [PluginMonitorExec-3]: org.jivesoftware.openfire.container.PluginManager - Successfully loaded plugin 'mucextinfo-1.0.0'. 2025.10.03 02:45:34.680 INFO [PluginMonitorExec-3]: uk.ifsoft.openfire.plugins.pade.PadePlugin - start pade server localhost:7443 2025.10.03 02:45:34.681 INFO [PluginMonitorExec-3]: org.jivesoftware.util.cache.CacheFactory - Created local-only cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for URL Source Content 2025.10.03 02:45:34.691 INFO [PluginMonitorExec-3]: org.jivesoftware.openfire.net.SASLAuthentication - Support added for the 'PADE' SASL mechanism. 2025.10.03 02:45:34.691 INFO [PluginMonitorExec-3]: uk.ifsoft.openfire.plugins.pade.PadePlugin - Create recordings folder 2025.10.03 02:45:34.692 INFO [PluginMonitorExec-3]: uk.ifsoft.openfire.plugins.pade.PadePlugin - Starting Openfire Meetings 2025.10.03 02:45:34.697 INFO [PluginMonitorExec-3]: org.jivesoftware.util.cache.CacheFactory - Created local-only cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for MUC Room Properties 2025.10.03 02:45:34.816 INFO [PluginMonitorExec-3]: org.jivesoftware.openfire.plugin.ofmeet.JitsiJvbWrapper - Successfully initialized Jitsi Videobridge. /usr/lib/jvm/java-11-openjdk-11.0.13.0.8-4.el8_5.x86_64/bin/java -Xmx1024m -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/tmp -Dconfig.file=/opt/openfire/bin/../plugins/pade/classes/jvb/application.conf -Dnet.java.sip.communicator.SC_HOME_DIR_LOCATION=/opt/openfire/bin/../plugins/pade/classes/jvb -Dnet.java.sip.communicator.SC_HOME_DIR_NAME=config -Djava.util.logging.config.file=./logging.properties -Djdk.tls.ephemeralDHKeySize=2048 -cp ./jitsi-videobridge-2.1-SNAPSHOT.jar:./jitsi-videobridge-2.1-SNAPSHOT-jar-with-dependencies.jar org.jitsi.videobridge.MainKt --apis=rest 2025.10.03 02:45:34.833 INFO [PluginMonitorExec-3]: org.jivesoftware.openfire.plugin.ofmeet.JitsiJicofoWrapper - Initializing Jitsi Focus Component (jicofo)... 2025.10.03 02:45:34.890 INFO [PluginMonitorExec-3]: org.jivesoftware.openfire.plugin.ofmeet.JitsiJicofoWrapper - allowed external component access 2025.10.03 02:45:34.963 INFO [PluginMonitorExec-3]: org.jivesoftware.openfire.plugin.ofmeet.JitsiJicofoWrapper - Successfully initialized Jitsi Focus Component (jicofo). /usr/lib/jvm/java-11-openjdk-11.0.13.0.8-4.el8_5.x86_64/bin/java -Xmx1024m -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/tmp -Dconfig.file=/opt/openfire/bin/../plugins/pade/classes/jicofo/application.conf -Dnet.java.sip.communicator.SC_HOME_DIR_LOCATION=/opt/openfire/bin/../plugins/pade/classes/jicofo -Dnet.java.sip.communicator.SC_HOME_DIR_NAME=config -Djava.util.logging.config.file=./logging.properties -Djdk.tls.ephemeralDHKeySize=2048 -cp ./jicofo-1.1-SNAPSHOT.jar:./jicofo-1.1-SNAPSHOT-jar-with-dependencies.jar org.jitsi.jicofo.Main --host=localhost --port=5275 --domain=localhost --secret=ElaQPVPKh05Zy4pb3Rgrvmm5XFoXVadRneWHyRqr --user_domain=localhost --user_name=focus --user_password=yra84zlHMIbfpL8CQpJDYDz5ODmtQXPpoRVds1WN 2025.10.03 02:45:34.980 INFO [PluginMonitorExec-3]: org.jivesoftware.openfire.plugin.ofmeet.OfMeetPlugin - Initialized public web socket for /colibri-ws web socket 2025.10.03 02:45:36.908 INFO [PluginMonitorExec-3]: org.jivesoftware.openfire.plugin.ofmeet.OfMeetPlugin - OfMeet Plugin - Initialize IQ handler 2025.10.03 02:45:37.023 INFO [PluginMonitorExec-3]: org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor 2025.10.03 02:45:37.027 INFO [PluginMonitorExec-3]: org.quartz.simpl.SimpleThreadPool - Job execution threads will use class loader of thread: PluginMonitorExec-3 2025.10.03 02:45:37.091 INFO [PluginMonitorExec-3]: org.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl 2025.10.03 02:45:37.091 INFO [PluginMonitorExec-3]: org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created. 2025.10.03 02:45:37.092 INFO [PluginMonitorExec-3]: org.quartz.simpl.RAMJobStore - RAMJobStore initialized. 2025.10.03 02:45:37.093 INFO [PluginMonitorExec-3]: org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'DefaultQuartzScheduler' with instanceId 'NON_CLUSTERED' Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. NOT STARTED. Currently in standby mode. Number of jobs executed: 0 Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. 2025.10.03 02:45:37.093 INFO [PluginMonitorExec-3]: org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties' 2025.10.03 02:45:37.093 INFO [PluginMonitorExec-3]: org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2 2025.10.03 02:45:37.094 INFO [PluginMonitorExec-3]: org.quartz.core.QuartzScheduler - Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started. 2025.10.03 02:45:37.096 INFO [PluginMonitorExec-3]: uk.ifsoft.openfire.plugins.pade.PadePlugin - Creating webauthn RelyingParty 2025.10.03 02:45:37.137 INFO [PluginMonitorExec-3]: org.jivesoftware.openfire.container.PluginManager - Successfully loaded plugin 'pade-1.8.4'. 2025.10.03 02:45:37.201 INFO [PluginMonitorExec-3]: org.jivesoftware.openfire.container.PluginManager - Successfully loaded plugin 'presence-1.7.4'. 2025.10.03 02:45:37.299 INFO [PluginMonitorExec-3]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for pushnotification.users 2025.10.03 02:45:37.299 INFO [PluginMonitorExec-3]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for pushnotification.messages 2025.10.03 02:45:37.354 INFO [PluginMonitorExec-3]: org.jivesoftware.openfire.container.PluginManager - Successfully loaded plugin 'pushnotification-1.0.1'. 2025.10.03 02:45:37.366 ERROR [PluginMonitorExec-3]: org.jivesoftware.openfire.container.PluginManager - An exception occurred while loading plugin 'restapi-plugin': java.lang.NullPointerException: null at org.jivesoftware.openfire.container.PluginManager.loadPlugin(PluginManager.java:582) [xmppserver-4.9.2.jar:4.9.2] at org.jivesoftware.openfire.container.PluginMonitor$MonitorTask$4.call(PluginMonitor.java:380) [xmppserver-4.9.2.jar:4.9.2] at org.jivesoftware.openfire.container.PluginMonitor$MonitorTask$4.call(PluginMonitor.java:368) [xmppserver-4.9.2.jar:4.9.2] at java.util.concurrent.FutureTask.run(FutureTask.java:264) [?:?] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) [?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) [?:?] at java.lang.Thread.run(Thread.java:829) [?:?] 2025.10.03 02:45:37.449 INFO [PluginMonitorExec-3]: org.jivesoftware.openfire.container.PluginManager - Successfully loaded plugin 'search-1.7.5'. 2025.10.03 02:45:37.501 INFO [PluginMonitorExec-3]: org.jivesoftware.openfire.container.PluginManager - Successfully loaded plugin 'usercreation-1.4.1'. 2025.10.03 02:45:37.559 INFO [PluginMonitorExec-3]: org.jivesoftware.openfire.container.PluginManager - Successfully loaded plugin 'userimportexport-2.8.0'. 2025.10.03 02:45:37.777 ERROR [PluginMonitorExec-3]: org.jivesoftware.openfire.container.PluginServlet - An unexpected problem occurred while attempting to register servlets for plugin 'org.jivesoftware.openfire.plugin.UserServicePlugin@68e423e1'. java.lang.ExceptionInInitializerError: null at java.lang.Class.forName0(Native Method) ~[?:?] at java.lang.Class.forName(Class.java:315) ~[?:?] at com.sun.proxy.$Proxy24.<clinit>(Unknown Source) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.reflect.Proxy.newProxyInstance(Proxy.java:1022) ~[?:?] at java.lang.reflect.Proxy.newProxyInstance(Proxy.java:1008) ~[?:?] at com.sun.jersey.server.impl.application.WebApplicationImpl$26.run(WebApplicationImpl.java:1626) ~[?:?] at java.security.AccessController.doPrivileged(Native Method) ~[?:?] at com.sun.jersey.server.impl.application.WebApplicationImpl.createProxy(WebApplicationImpl.java:1623) ~[?:?] at com.sun.jersey.server.impl.application.WebApplicationImpl.<init>(WebApplicationImpl.java:335) ~[?:?] at com.sun.jersey.server.impl.container.WebApplicationProviderImpl.createWebApplication(WebApplicationProviderImpl.java:55) ~[?:?] at com.sun.jersey.spi.container.WebApplicationFactory.createWebApplication(WebApplicationFactory.java:66) ~[?:?] at com.sun.jersey.spi.container.servlet.ServletContainer.create(ServletContainer.java:412) ~[?:?] at com.sun.jersey.spi.container.servlet.ServletContainer$InternalWebComponent.create(ServletContainer.java:327) ~[?:?] at com.sun.jersey.spi.container.servlet.WebComponent.load(WebComponent.java:603) ~[?:?] at com.sun.jersey.spi.container.servlet.WebComponent.init(WebComponent.java:207) ~[?:?] at com.sun.jersey.spi.container.servlet.ServletContainer.init(ServletContainer.java:394) ~[?:?] at com.sun.jersey.spi.container.servlet.ServletContainer.init(ServletContainer.java:577) ~[?:?] at javax.servlet.GenericServlet.init(GenericServlet.java:180) ~[jetty-servlet-api-4.0.6.jar:?] at org.jivesoftware.openfire.plugin.JerseyWrapper.init(JerseyWrapper.java:83) ~[?:?] at org.jivesoftware.openfire.container.PluginServlet.registerServlets(PluginServlet.java:192) [xmppserver-4.9.2.jar:4.9.2] at org.jivesoftware.openfire.container.PluginManager.loadPlugin(PluginManager.java:631) [xmppserver-4.9.2.jar:4.9.2] at org.jivesoftware.openfire.container.PluginMonitor$MonitorTask$4.call(PluginMonitor.java:380) [xmppserver-4.9.2.jar:4.9.2] at org.jivesoftware.openfire.container.PluginMonitor$MonitorTask$4.call(PluginMonitor.java:368) [xmppserver-4.9.2.jar:4.9.2] at java.util.concurrent.FutureTask.run(FutureTask.java:264) [?:?] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) [?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) [?:?] at java.lang.Thread.run(Thread.java:829) [?:?] Caused by: java.lang.RuntimeException: java.lang.ClassNotFoundException: com.sun.ws.rs.ext.RuntimeDelegateImpl at javax.ws.rs.ext.RuntimeDelegate.findDelegate(RuntimeDelegate.java:122) ~[?:?] at javax.ws.rs.ext.RuntimeDelegate.getInstance(RuntimeDelegate.java:91) ~[?:?] at javax.ws.rs.core.EntityTag.<clinit>(EntityTag.java:35) ~[?:?] ... 31 more Caused by: java.lang.ClassNotFoundException: com.sun.ws.rs.ext.RuntimeDelegateImpl at java.net.URLClassLoader.findClass(URLClassLoader.java:476) ~[?:?] at java.lang.ClassLoader.loadClass(ClassLoader.java:589) ~[?:?] at java.lang.ClassLoader.loadClass(ClassLoader.java:522) ~[?:?] at java.lang.Class.forName0(Native Method) ~[?:?] at java.lang.Class.forName(Class.java:315) ~[?:?] at javax.ws.rs.ext.FactoryFinder.newInstance(FactoryFinder.java:62) ~[?:?] at javax.ws.rs.ext.FactoryFinder.find(FactoryFinder.java:155) ~[?:?] at javax.ws.rs.ext.RuntimeDelegate.findDelegate(RuntimeDelegate.java:105) ~[?:?] at javax.ws.rs.ext.RuntimeDelegate.getInstance(RuntimeDelegate.java:91) ~[?:?] at javax.ws.rs.core.EntityTag.<clinit>(EntityTag.java:35) ~[?:?] ... 31 more 2025.10.03 02:45:37.819 INFO [PluginMonitorExec-3]: org.jivesoftware.openfire.container.PluginManager - Successfully loaded plugin 'userservice-2.1.3'. 2025.10.03 02:45:37.947 INFO [PluginMonitorExec-3]: org.jivesoftware.openfire.container.PluginManager - Successfully loaded plugin 'userstatus-1.3.0'. 2025.10.03 02:45:37.990 INFO [PluginMonitorExec-3]: org.jivesoftware.openfire.container.PluginManager - Successfully loaded plugin 'xmppweb-0.10.3 Release 1'. 2025.10.03 02:45:37.998 INFO [PluginMonitorExec-2]: org.jivesoftware.openfire.container.PluginManager - Successfully loaded plugin 'jabberbrowsing-1.0.1'. 2025.10.03 02:45:38.528 INFO [PluginMonitorExec-5]: org.jivesoftware.util.cache.CacheFactory - Created local-only cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for MUC Extended Service Discovery 2025.10.03 02:45:38.824 INFO [PluginMonitorExec-5]: org.jivesoftware.openfire.fastpath.FastpathPlugin - start webchat 2025.10.03 02:45:38.875 INFO [PluginMonitorExec-5]: org.jivesoftware.openfire.container.PluginManager - Successfully loaded plugin 'fastpath-4.5.1'. 2025.10.03 02:45:38.943 INFO [PluginMonitorExec-4]: org.jivesoftware.openfire.container.PluginManager - Successfully loaded plugin 'contentfilter-1.9.0'. 2025.10.03 02:45:38.944 INFO [PluginMonitorTask-2]: org.jivesoftware.openfire.container.PluginMonitor - Finished processing all plugins. 2025.10.03 02:45:39.212 INFO [PluginMonitorTask-2]: org.jivesoftware.openfire.spi.ConnectionListener[socket_c2s] - Started. 2025.10.03 02:45:39.228 INFO [PluginMonitorTask-2]: org.jivesoftware.openfire.spi.ConnectionListener[socket_c2s-directTLS] - Started. 2025.10.03 02:45:39.260 INFO [PluginMonitorTask-2]: org.jivesoftware.openfire.spi.ConnectionListener[socket_s2s] - Started. 2025.10.03 02:45:39.283 INFO [PluginMonitorTask-2]: org.jivesoftware.openfire.spi.ConnectionListener[socket_s2s-directTLS] - Started. 2025.10.03 02:45:39.286 INFO [PluginMonitorTask-2]: org.jivesoftware.openfire.spi.ConnectionListener[component] - Started. 2025.10.03 02:45:39.378 INFO [PluginMonitorTask-2]: org.jivesoftware.openfire.spi.ConnectionListener[component-directTLS] - Started. 2025.10.03 02:45:39.441 INFO [PluginMonitorTask-2]: org.jivesoftware.openfire.spi.ConnectionListener[connection_manager] - Started. 2025.10.03 02:45:39.508 INFO [PluginMonitorTask-2]: org.jivesoftware.openfire.spi.ConnectionListener[connection_manager-directTLS] - Started. 2025.10.03 02:45:39.513 INFO [PluginMonitorTask-2]: org.jivesoftware.openfire.spi.EncryptionArtifactFactory - Creating new SslContextFactory instance 2025.10.03 02:45:39.599 INFO [PluginMonitorTask-2]: org.jivesoftware.openfire.http.HttpSessionManager - Starting instance 2025.10.03 02:45:39.922 INFO [PluginMonitorTask-2]: org.jivesoftware.openfire.http.HttpBindManager - HTTP bind service started 2025.10.03 02:45:42.465 INFO [socket_c2s-thread-2]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Locked Out Accounts 2025.10.03 02:45:42.710 INFO [socket_c2s-thread-2]: org.jivesoftware.util.cache.CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Sequences 2025.10.03 02:45:59.940 ERROR [PluginMonitorExec-2]: org.jivesoftware.openfire.container.PluginManager - An exception occurred while loading plugin 'restapi-plugin': java.lang.NullPointerException: null at org.jivesoftware.openfire.container.PluginManager.loadPlugin(PluginManager.java:582) [xmppserver-4.9.2.jar:4.9.2] at org.jivesoftware.openfire.container.PluginMonitor$MonitorTask$4.call(PluginMonitor.java:380) [xmppserver-4.9.2.jar:4.9.2] at org.jivesoftware.openfire.container.PluginMonitor$MonitorTask$4.call(PluginMonitor.java:368) [xmppserver-4.9.2.jar:4.9.2] at java.util.concurrent.FutureTask.run(FutureTask.java:264) [?:?] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) [?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) [?:?] at java.lang.Thread.run(Thread.java:829) [?:?]
最新发布
10-04
(venv) PS D:\zy\project-python-zy\ai\test-image\ti-test01> pip install pyarrow==14.0.1 # 当前稳定版,可根据需要替换 >> Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple Collecting pyarrow==14.0.1 Downloading https://pypi.tuna.tsinghua.edu.cn/packages/e0/c3/48602ef0a293af9297c0c65cdef8a2339256e485c54a4ff375d3e95d3415/pyarrow-14.0.1.tar.gz (1.1 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/1.1 MB 4.6 MB/s 0:00:00 Installing build dependencies ... done Getting requirements to build wheel ... done Preparing metadata (pyproject.toml) ... done Requirement already satisfied: numpy>=1.16.6 in d:\zy\project-python-zy\ai\test-image\ti-test01\venv\lib\site-packages (from pyarrow==14.0.1) (2.2.6) Building wheels for collected packages: pyarrow Building wheel for pyarrow (pyproject.toml) ... error error: subprocess-exited-with-error × Building wheel for pyarrow (pyproject.toml) did not run successfully. │ exit code: 1 ╰─> [358 lines of output] <string>:34: UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81. C:\Users\Administrator\AppData\Local\Temp\pip-build-env-_8m4iiko\overlay\Lib\site-packages\setuptools\_distutils\dist.py:289: UserWarning: Unknown distribution option: 'tests_require' warnings.warn(msg) C:\Users\Administrator\AppData\Local\Temp\pip-build-env-_8m4iiko\overlay\Lib\site-packages\setuptools\_distutils\dist.py:289: UserWarning: Unknown distribution option: 'test_suite' warnings.warn(msg) C:\Users\Administrator\AppData\Local\Temp\pip-build-env-_8m4iiko\overlay\Lib\site-packages\setuptools\dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. !! ******************************************************************************** Please consider removing the following classifiers in favor of a SPDX license expression: License :: OSI Approved :: Apache Software License See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. ******************************************************************************** !! self._finalize_license_expression() C:\Users\Administrator\AppData\Local\Temp\pip-build-env-_8m4iiko\overlay\Lib\site-packages\setuptools\dist.py:483: SetuptoolsDeprecationWarning: Pattern '../LICENSE.txt' cannot contain '..' !! ******************************************************************************** Please ensure the files specified are contained by the root of the Python package (normally marked by `pyproject.toml`). By 2026-Mar-20, you need to update your project and remove deprecated calls or your builds will no longer be supported. See https://packaging.python.org/en/latest/specifications/glob-patterns/ for details. ******************************************************************************** !! for path in sorted(cls._find_pattern(pattern, enforce_match)) C:\Users\Administrator\AppData\Local\Temp\pip-build-env-_8m4iiko\overlay\Lib\site-packages\setuptools\dist.py:483: SetuptoolsDeprecationWarning: Cannot find any files for the given pattern. !! ******************************************************************************** Pattern '../LICENSE.txt' did not match any files. By 2026-Mar-20, you need to update your project and remove deprecated calls or your builds will no longer be supported. ******************************************************************************** !! for path in sorted(cls._find_pattern(pattern, enforce_match)) C:\Users\Administrator\AppData\Local\Temp\pip-build-env-_8m4iiko\overlay\Lib\site-packages\setuptools\dist.py:483: SetuptoolsDeprecationWarning: Pattern '../NOTICE.txt' cannot contain '..' !! ******************************************************************************** Please ensure the files specified are contained by the root of the Python package (normally marked by `pyproject.toml`). By 2026-Mar-20, you need to update your project and remove deprecated calls or your builds will no longer be supported. See https://packaging.python.org/en/latest/specifications/glob-patterns/ for details. ******************************************************************************** !! for path in sorted(cls._find_pattern(pattern, enforce_match)) C:\Users\Administrator\AppData\Local\Temp\pip-build-env-_8m4iiko\overlay\Lib\site-packages\setuptools\dist.py:483: SetuptoolsDeprecationWarning: Cannot find any files for the given pattern. !! ******************************************************************************** Pattern '../NOTICE.txt' did not match any files. By 2026-Mar-20, you need to update your project and remove deprecated calls or your builds will no longer be supported. ******************************************************************************** !! for path in sorted(cls._find_pattern(pattern, enforce_match)) running bdist_wheel running build running build_py creating build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\acero.py -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\benchmark.py -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\cffi.py -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\compute.py -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\conftest.py -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\csv.py -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\cuda.py -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\dataset.py -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\feather.py -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\filesystem.py -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\flight.py -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\fs.py -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\hdfs.py -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\ipc.py -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\json.py -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\jvm.py -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\orc.py -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\pandas_compat.py -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\substrait.py -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\types.py -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\util.py -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_compute_docstrings.py -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_generated_version.py -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\__init__.py -> build\lib.win-amd64-cpython-313\pyarrow creating build\lib.win-amd64-cpython-313\pyarrow\interchange copying pyarrow\interchange\buffer.py -> build\lib.win-amd64-cpython-313\pyarrow\interchange copying pyarrow\interchange\column.py -> build\lib.win-amd64-cpython-313\pyarrow\interchange copying pyarrow\interchange\dataframe.py -> build\lib.win-amd64-cpython-313\pyarrow\interchange copying pyarrow\interchange\from_dataframe.py -> build\lib.win-amd64-cpython-313\pyarrow\interchange copying pyarrow\interchange\__init__.py -> build\lib.win-amd64-cpython-313\pyarrow\interchange creating build\lib.win-amd64-cpython-313\pyarrow\parquet copying pyarrow\parquet\core.py -> build\lib.win-amd64-cpython-313\pyarrow\parquet copying pyarrow\parquet\encryption.py -> build\lib.win-amd64-cpython-313\pyarrow\parquet copying pyarrow\parquet\__init__.py -> build\lib.win-amd64-cpython-313\pyarrow\parquet creating build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\arrow_16597.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\arrow_7980.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\conftest.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\pandas_examples.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\pandas_threaded_import.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\read_record_batch.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\strategies.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_acero.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_adhoc_memory_leak.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_array.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_builder.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_cffi.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_compute.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_convert_builtin.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_cpp_internals.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_csv.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_cuda.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_cuda_numba_interop.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_cython.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_dataset.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_dataset_encryption.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_deprecations.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_exec_plan.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_extension_type.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_feather.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_filesystem.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_flight.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_flight_async.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_fs.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_gandiva.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_gdb.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_hdfs.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_io.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_ipc.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_json.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_jvm.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_memory.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_misc.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_orc.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_pandas.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_scalars.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_schema.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_sparse_tensor.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_strategies.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_substrait.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_table.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_tensor.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_types.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_udf.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\test_util.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\util.py -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\__init__.py -> build\lib.win-amd64-cpython-313\pyarrow\tests creating build\lib.win-amd64-cpython-313\pyarrow\vendored copying pyarrow\vendored\docscrape.py -> build\lib.win-amd64-cpython-313\pyarrow\vendored copying pyarrow\vendored\version.py -> build\lib.win-amd64-cpython-313\pyarrow\vendored copying pyarrow\vendored\__init__.py -> build\lib.win-amd64-cpython-313\pyarrow\vendored creating build\lib.win-amd64-cpython-313\pyarrow\tests\interchange copying pyarrow\tests\interchange\test_conversion.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\interchange copying pyarrow\tests\interchange\test_interchange_spec.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\interchange copying pyarrow\tests\interchange\__init__.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\interchange creating build\lib.win-amd64-cpython-313\pyarrow\tests\parquet copying pyarrow\tests\parquet\common.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\parquet copying pyarrow\tests\parquet\conftest.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\parquet copying pyarrow\tests\parquet\encryption.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_basic.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_compliant_nested_type.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_dataset.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_data_types.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_datetime.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_encryption.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_metadata.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_pandas.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_parquet_file.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_parquet_writer.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\parquet copying pyarrow\tests\parquet\__init__.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\parquet running egg_info writing pyarrow.egg-info\PKG-INFO writing dependency_links to pyarrow.egg-info\dependency_links.txt writing requirements to pyarrow.egg-info\requires.txt writing top-level names to pyarrow.egg-info\top_level.txt listing git files failed - pretending there aren't any reading manifest file 'pyarrow.egg-info\SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no files found matching '..\LICENSE.txt' warning: no files found matching '..\NOTICE.txt' warning: no previously-included files matching '*.so' found anywhere in distribution warning: no previously-included files matching '*.pyc' found anywhere in distribution warning: no previously-included files matching '*~' found anywhere in distribution warning: no previously-included files matching '#*' found anywhere in distribution warning: no previously-included files matching '.git*' found anywhere in distribution warning: no previously-included files matching '.DS_Store' found anywhere in distribution no previously-included directories found matching '.asv' writing manifest file 'pyarrow.egg-info\SOURCES.txt' copying pyarrow\__init__.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_acero.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_acero.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_compute.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_compute.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_csv.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_csv.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_cuda.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_cuda.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_dataset.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_dataset.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_dataset_orc.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_dataset_parquet.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_dataset_parquet.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_dataset_parquet_encryption.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_feather.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_flight.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_fs.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_fs.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_gcsfs.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_hdfs.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_hdfsio.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_json.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_json.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_orc.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_orc.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_parquet.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_parquet.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_parquet_encryption.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_parquet_encryption.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_pyarrow_cpp_tests.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_pyarrow_cpp_tests.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_s3fs.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_substrait.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\array.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\benchmark.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\builder.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\compat.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\config.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\error.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\gandiva.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\io.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\ipc.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\lib.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\lib.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\memory.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\pandas-shim.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\public-api.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\scalar.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\table.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\tensor.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\types.pxi -> build\lib.win-amd64-cpython-313\pyarrow creating build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\common.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libarrow.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libarrow_acero.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libarrow_cuda.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libarrow_dataset.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libarrow_dataset_parquet.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libarrow_feather.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libarrow_flight.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libarrow_fs.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libarrow_python.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libarrow_substrait.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libgandiva.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libparquet_encryption.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\__init__.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\tests\bound_function_visit_strings.pyx -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\extensions.pyx -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\pyarrow_cython_example.pyx -> build\lib.win-amd64-cpython-313\pyarrow\tests creating build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\CMakeLists.txt -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\api.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\arrow_to_pandas.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\arrow_to_pandas.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\arrow_to_python_internal.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\async.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\benchmark.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\benchmark.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\common.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\common.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\csv.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\csv.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\datetime.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\datetime.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\decimal.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\decimal.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\deserialize.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\deserialize.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\extension_type.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\extension_type.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\filesystem.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\filesystem.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\flight.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\flight.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\gdb.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\gdb.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\helpers.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\helpers.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\inference.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\inference.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\init.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\init.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\io.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\io.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\ipc.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\ipc.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\iterators.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\numpy_convert.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\numpy_convert.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\numpy_internal.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\numpy_interop.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\numpy_to_arrow.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\numpy_to_arrow.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\parquet_encryption.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\parquet_encryption.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\pch.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\platform.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\pyarrow.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\pyarrow.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\pyarrow_api.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\pyarrow_lib.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\python_test.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\python_test.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\python_to_arrow.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\python_to_arrow.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\serialize.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\serialize.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\type_traits.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\udf.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\udf.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\visibility.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python creating build\lib.win-amd64-cpython-313\pyarrow\tests\data\feather copying pyarrow\tests\data\feather\v0.17.0.version.2-compression.lz4.feather -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\feather creating build\lib.win-amd64-cpython-313\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\README.md -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\TestOrcFile.emptyFile.jsn.gz -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\TestOrcFile.emptyFile.orc -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\TestOrcFile.test1.jsn.gz -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\TestOrcFile.test1.orc -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\TestOrcFile.testDate1900.jsn.gz -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\TestOrcFile.testDate1900.orc -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\decimal.jsn.gz -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\decimal.orc -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\orc creating build\lib.win-amd64-cpython-313\pyarrow\tests\data\parquet copying pyarrow\tests\data\parquet\v0.7.1.all-named-index.parquet -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\parquet copying pyarrow\tests\data\parquet\v0.7.1.column-metadata-handling.parquet -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\parquet copying pyarrow\tests\data\parquet\v0.7.1.parquet -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\parquet copying pyarrow\tests\data\parquet\v0.7.1.some-named-index.parquet -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\parquet running build_ext creating C:\Users\Administrator\AppData\Local\Temp\pip-install-g114dm4o\pyarrow_b4bab91d13eb487b884281ef577efe1e\build\temp.win-amd64-cpython-313 -- Running cmake for PyArrow cmake -DCMAKE_INSTALL_PREFIX=C:\Users\Administrator\AppData\Local\Temp\pip-install-g114dm4o\pyarrow_b4bab91d13eb487b884281ef577efe1e\build\lib.win-amd64-cpython-313\pyarrow -DPYTHON_EXECUTABLE=D:\zy\project-python-zy\ai\test-image\ti-test01\venv\Scripts\python.exe -DPython3_EXECUTABLE=D:\zy\project-python-zy\ai\test-image\ti-test01\venv\Scripts\python.exe -DPYARROW_CXXFLAGS= -G "Visual Studio 15 2017 Win64" -DPYARROW_BUILD_CUDA=off -DPYARROW_BUILD_SUBSTRAIT=off -DPYARROW_BUILD_FLIGHT=off -DPYARROW_BUILD_GANDIVA=off -DPYARROW_BUILD_ACERO=off -DPYARROW_BUILD_DATASET=off -DPYARROW_BUILD_ORC=off -DPYARROW_BUILD_PARQUET=off -DPYARROW_BUILD_PARQUET_ENCRYPTION=off -DPYARROW_BUILD_GCS=off -DPYARROW_BUILD_S3=off -DPYARROW_BUILD_HDFS=off -DPYARROW_BUNDLE_ARROW_CPP=off -DPYARROW_BUNDLE_CYTHON_CPP=off -DPYARROW_GENERATE_COVERAGE=off -DCMAKE_BUILD_TYPE=release C:\Users\Administrator\AppData\Local\Temp\pip-install-g114dm4o\pyarrow_b4bab91d13eb487b884281ef577efe1e error: command 'cmake' failed: None [end of output] note: This error originates from a subprocess, and is likely not a problem with pip. ERROR: Failed building wheel for pyarrow Failed to build pyarrow error: failed-wheel-build-for-install × Failed to build installable wheels for some pyproject.toml based projects ╰─> pyarrow (venv) PS D:\zy\project-python-zy\ai\test-image\ti-test01>
08-26
C:\Users\Administrator>pip install pyarrow==10.0.1 Collecting pyarrow==10.0.1 Downloading pyarrow-10.0.1.tar.gz (994 kB) ---------------------------------------- 994.1/994.1 kB 2.8 MB/s 0:00:00 Installing build dependencies ... done Getting requirements to build wheel ... done Preparing metadata (pyproject.toml) ... done Requirement already satisfied: numpy>=1.16.6 in c:\users\administrator\appdata\local\programs\python\python312\lib\site-packages (from pyarrow==10.0.1) (1.26.4) Building wheels for collected packages: pyarrow Building wheel for pyarrow (pyproject.toml) ... error error: subprocess-exited-with-error × Building wheel for pyarrow (pyproject.toml) did not run successfully. │ exit code: 1 ╰─> [357 lines of output] <string>:36: UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81. C:\Users\Administrator\AppData\Local\Temp\pip-build-env-5rs1rq6z\overlay\Lib\site-packages\setuptools\_distutils\dist.py:289: UserWarning: Unknown distribution option: 'tests_require' warnings.warn(msg) C:\Users\Administrator\AppData\Local\Temp\pip-build-env-5rs1rq6z\overlay\Lib\site-packages\setuptools\_distutils\dist.py:289: UserWarning: Unknown distribution option: 'test_suite' warnings.warn(msg) toml section missing WindowsPath('pyproject.toml') does not contain a tool.setuptools_scm section toml section missing WindowsPath('pyproject.toml') does not contain a tool.setuptools_scm section C:\Users\Administrator\AppData\Local\Temp\pip-build-env-5rs1rq6z\overlay\Lib\site-packages\setuptools\dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. !! ******************************************************************************** Please consider removing the following classifiers in favor of a SPDX license expression: License :: OSI Approved :: Apache Software License See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. ******************************************************************************** !! self._finalize_license_expression() C:\Users\Administrator\AppData\Local\Temp\pip-build-env-5rs1rq6z\overlay\Lib\site-packages\setuptools\dist.py:483: SetuptoolsDeprecationWarning: Pattern '../LICENSE.txt' cannot contain '..' !! ******************************************************************************** Please ensure the files specified are contained by the root of the Python package (normally marked by `pyproject.toml`). By 2026-Mar-20, you need to update your project and remove deprecated calls or your builds will no longer be supported. See https://packaging.python.org/en/latest/specifications/glob-patterns/ for details. ******************************************************************************** !! for path in sorted(cls._find_pattern(pattern, enforce_match)) C:\Users\Administrator\AppData\Local\Temp\pip-build-env-5rs1rq6z\overlay\Lib\site-packages\setuptools\dist.py:483: SetuptoolsDeprecationWarning: Cannot find any files for the given pattern. !! ******************************************************************************** Pattern '../LICENSE.txt' did not match any files. By 2026-Mar-20, you need to update your project and remove deprecated calls or your builds will no longer be supported. ******************************************************************************** !! for path in sorted(cls._find_pattern(pattern, enforce_match)) C:\Users\Administrator\AppData\Local\Temp\pip-build-env-5rs1rq6z\overlay\Lib\site-packages\setuptools\dist.py:483: SetuptoolsDeprecationWarning: Pattern '../NOTICE.txt' cannot contain '..' !! ******************************************************************************** Please ensure the files specified are contained by the root of the Python package (normally marked by `pyproject.toml`). By 2026-Mar-20, you need to update your project and remove deprecated calls or your builds will no longer be supported. See https://packaging.python.org/en/latest/specifications/glob-patterns/ for details. ******************************************************************************** !! for path in sorted(cls._find_pattern(pattern, enforce_match)) C:\Users\Administrator\AppData\Local\Temp\pip-build-env-5rs1rq6z\overlay\Lib\site-packages\setuptools\dist.py:483: SetuptoolsDeprecationWarning: Cannot find any files for the given pattern. !! ******************************************************************************** Pattern '../NOTICE.txt' did not match any files. By 2026-Mar-20, you need to update your project and remove deprecated calls or your builds will no longer be supported. ******************************************************************************** !! for path in sorted(cls._find_pattern(pattern, enforce_match)) running bdist_wheel running build running build_py creating build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\benchmark.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\cffi.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\compute.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\conftest.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\csv.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\cuda.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\dataset.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\feather.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\filesystem.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\flight.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\fs.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\hdfs.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\ipc.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\json.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\jvm.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\orc.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\pandas_compat.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\plasma.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\serialization.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\substrait.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\types.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\util.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_compute_docstrings.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_generated_version.py -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\__init__.py -> build\lib.win-amd64-cpython-312\pyarrow creating build\lib.win-amd64-cpython-312\pyarrow\parquet copying pyarrow\parquet\core.py -> build\lib.win-amd64-cpython-312\pyarrow\parquet copying pyarrow\parquet\encryption.py -> build\lib.win-amd64-cpython-312\pyarrow\parquet copying pyarrow\parquet\__init__.py -> build\lib.win-amd64-cpython-312\pyarrow\parquet creating build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\arrow_16597.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\arrow_7980.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\conftest.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\deserialize_buffer.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\pandas_examples.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\pandas_threaded_import.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\read_record_batch.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\strategies.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_adhoc_memory_leak.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_array.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_builder.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_cffi.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_compute.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_convert_builtin.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_cpp_internals.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_csv.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_cuda.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_cuda_numba_interop.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_cython.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_dataset.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_deprecations.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_exec_plan.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_extension_type.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_feather.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_filesystem.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_flight.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_fs.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_gandiva.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_gdb.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_hdfs.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_io.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_ipc.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_json.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_jvm.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_memory.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_misc.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_orc.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_pandas.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_plasma.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_plasma_tf_op.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_scalars.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_schema.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_serialization.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_serialization_deprecated.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_sparse_tensor.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_strategies.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_substrait.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_table.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_tensor.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_types.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_udf.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\test_util.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\util.py -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\__init__.py -> build\lib.win-amd64-cpython-312\pyarrow\tests creating build\lib.win-amd64-cpython-312\pyarrow\vendored copying pyarrow\vendored\docscrape.py -> build\lib.win-amd64-cpython-312\pyarrow\vendored copying pyarrow\vendored\version.py -> build\lib.win-amd64-cpython-312\pyarrow\vendored copying pyarrow\vendored\__init__.py -> build\lib.win-amd64-cpython-312\pyarrow\vendored creating build\lib.win-amd64-cpython-312\pyarrow\tests\parquet copying pyarrow\tests\parquet\common.py -> build\lib.win-amd64-cpython-312\pyarrow\tests\parquet copying pyarrow\tests\parquet\conftest.py -> build\lib.win-amd64-cpython-312\pyarrow\tests\parquet copying pyarrow\tests\parquet\encryption.py -> build\lib.win-amd64-cpython-312\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_basic.py -> build\lib.win-amd64-cpython-312\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_compliant_nested_type.py -> build\lib.win-amd64-cpython-312\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_dataset.py -> build\lib.win-amd64-cpython-312\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_data_types.py -> build\lib.win-amd64-cpython-312\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_datetime.py -> build\lib.win-amd64-cpython-312\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_encryption.py -> build\lib.win-amd64-cpython-312\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_metadata.py -> build\lib.win-amd64-cpython-312\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_pandas.py -> build\lib.win-amd64-cpython-312\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_parquet_file.py -> build\lib.win-amd64-cpython-312\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_parquet_writer.py -> build\lib.win-amd64-cpython-312\pyarrow\tests\parquet copying pyarrow\tests\parquet\__init__.py -> build\lib.win-amd64-cpython-312\pyarrow\tests\parquet running egg_info writing pyarrow.egg-info\PKG-INFO writing dependency_links to pyarrow.egg-info\dependency_links.txt writing entry points to pyarrow.egg-info\entry_points.txt writing requirements to pyarrow.egg-info\requires.txt writing top-level names to pyarrow.egg-info\top_level.txt listing git files failed - pretending there aren't any reading manifest file 'pyarrow.egg-info\SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no files found matching '..\LICENSE.txt' warning: no files found matching '..\NOTICE.txt' warning: no previously-included files matching '*.so' found anywhere in distribution warning: no previously-included files matching '*.pyc' found anywhere in distribution warning: no previously-included files matching '*~' found anywhere in distribution warning: no previously-included files matching '#*' found anywhere in distribution warning: no previously-included files matching '.git*' found anywhere in distribution warning: no previously-included files matching '.DS_Store' found anywhere in distribution no previously-included directories found matching '.asv' writing manifest file 'pyarrow.egg-info\SOURCES.txt' copying pyarrow\__init__.pxd -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_compute.pxd -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_compute.pyx -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_csv.pxd -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_csv.pyx -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_cuda.pxd -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_cuda.pyx -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_dataset.pxd -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_dataset.pyx -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_dataset_orc.pyx -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_dataset_parquet.pyx -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_exec_plan.pyx -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_feather.pyx -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_flight.pyx -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_fs.pxd -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_fs.pyx -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_gcsfs.pyx -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_hdfs.pyx -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_hdfsio.pyx -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_json.pyx -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_orc.pxd -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_orc.pyx -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_parquet.pxd -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_parquet.pyx -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_parquet_encryption.pxd -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_parquet_encryption.pyx -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_plasma.pyx -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_pyarrow_cpp_tests.pxd -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_pyarrow_cpp_tests.pyx -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_s3fs.pyx -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\_substrait.pyx -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\array.pxi -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\benchmark.pxi -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\builder.pxi -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\compat.pxi -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\config.pxi -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\error.pxi -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\gandiva.pyx -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\io.pxi -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\ipc.pxi -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\lib.pxd -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\lib.pyx -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\memory.pxi -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\pandas-shim.pxi -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\public-api.pxi -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\scalar.pxi -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\serialization.pxi -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\table.pxi -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\tensor.pxi -> build\lib.win-amd64-cpython-312\pyarrow copying pyarrow\types.pxi -> build\lib.win-amd64-cpython-312\pyarrow creating build\lib.win-amd64-cpython-312\pyarrow\includes copying pyarrow\includes\common.pxd -> build\lib.win-amd64-cpython-312\pyarrow\includes copying pyarrow\includes\libarrow.pxd -> build\lib.win-amd64-cpython-312\pyarrow\includes copying pyarrow\includes\libarrow_cuda.pxd -> build\lib.win-amd64-cpython-312\pyarrow\includes copying pyarrow\includes\libarrow_dataset.pxd -> build\lib.win-amd64-cpython-312\pyarrow\includes copying pyarrow\includes\libarrow_dataset_parquet.pxd -> build\lib.win-amd64-cpython-312\pyarrow\includes copying pyarrow\includes\libarrow_feather.pxd -> build\lib.win-amd64-cpython-312\pyarrow\includes copying pyarrow\includes\libarrow_flight.pxd -> build\lib.win-amd64-cpython-312\pyarrow\includes copying pyarrow\includes\libarrow_fs.pxd -> build\lib.win-amd64-cpython-312\pyarrow\includes copying pyarrow\includes\libarrow_python.pxd -> build\lib.win-amd64-cpython-312\pyarrow\includes copying pyarrow\includes\libarrow_substrait.pxd -> build\lib.win-amd64-cpython-312\pyarrow\includes copying pyarrow\includes\libgandiva.pxd -> build\lib.win-amd64-cpython-312\pyarrow\includes copying pyarrow\includes\libplasma.pxd -> build\lib.win-amd64-cpython-312\pyarrow\includes copying pyarrow\includes\__init__.pxd -> build\lib.win-amd64-cpython-312\pyarrow\includes creating build\lib.win-amd64-cpython-312\pyarrow\src copying pyarrow\src\ArrowPythonConfig.cmake.in -> build\lib.win-amd64-cpython-312\pyarrow\src copying pyarrow\src\ArrowPythonFlightConfig.cmake.in -> build\lib.win-amd64-cpython-312\pyarrow\src copying pyarrow\src\CMakeLists.txt -> build\lib.win-amd64-cpython-312\pyarrow\src copying pyarrow\src\arrow-python-flight.pc.in -> build\lib.win-amd64-cpython-312\pyarrow\src copying pyarrow\src\arrow-python.pc.in -> build\lib.win-amd64-cpython-312\pyarrow\src creating build\lib.win-amd64-cpython-312\pyarrow\tensorflow copying pyarrow\tensorflow\plasma_op.cc -> build\lib.win-amd64-cpython-312\pyarrow\tensorflow copying pyarrow\tests\bound_function_visit_strings.pyx -> build\lib.win-amd64-cpython-312\pyarrow\tests copying pyarrow\tests\pyarrow_cython_example.pyx -> build\lib.win-amd64-cpython-312\pyarrow\tests creating build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\CMakeLists.txt -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\api.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\arrow_to_pandas.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\arrow_to_pandas.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\arrow_to_python_internal.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\benchmark.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\benchmark.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\common.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\common.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\csv.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\csv.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\datetime.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\datetime.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\decimal.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\decimal.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\deserialize.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\deserialize.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\extension_type.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\extension_type.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\filesystem.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\filesystem.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\flight.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\flight.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\gdb.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\gdb.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\helpers.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\helpers.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\inference.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\inference.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\init.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\init.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\io.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\io.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\ipc.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\ipc.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\iterators.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\numpy_convert.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\numpy_convert.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\numpy_internal.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\numpy_interop.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\numpy_to_arrow.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\numpy_to_arrow.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\parquet_encryption.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\parquet_encryption.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\pch.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\platform.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\pyarrow.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\pyarrow.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\pyarrow_api.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\pyarrow_lib.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\python_test.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\python_test.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\python_to_arrow.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\python_to_arrow.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\serialize.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\serialize.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\type_traits.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\udf.cc -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\udf.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\visibility.h -> build\lib.win-amd64-cpython-312\pyarrow\src\arrow\python creating build\lib.win-amd64-cpython-312\pyarrow\tests\data\feather copying pyarrow\tests\data\feather\v0.17.0.version.2-compression.lz4.feather -> build\lib.win-amd64-cpython-312\pyarrow\tests\data\feather creating build\lib.win-amd64-cpython-312\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\README.md -> build\lib.win-amd64-cpython-312\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\TestOrcFile.emptyFile.jsn.gz -> build\lib.win-amd64-cpython-312\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\TestOrcFile.emptyFile.orc -> build\lib.win-amd64-cpython-312\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\TestOrcFile.test1.jsn.gz -> build\lib.win-amd64-cpython-312\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\TestOrcFile.test1.orc -> build\lib.win-amd64-cpython-312\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\TestOrcFile.testDate1900.jsn.gz -> build\lib.win-amd64-cpython-312\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\TestOrcFile.testDate1900.orc -> build\lib.win-amd64-cpython-312\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\decimal.jsn.gz -> build\lib.win-amd64-cpython-312\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\decimal.orc -> build\lib.win-amd64-cpython-312\pyarrow\tests\data\orc creating build\lib.win-amd64-cpython-312\pyarrow\tests\data\parquet copying pyarrow\tests\data\parquet\v0.7.1.all-named-index.parquet -> build\lib.win-amd64-cpython-312\pyarrow\tests\data\parquet copying pyarrow\tests\data\parquet\v0.7.1.column-metadata-handling.parquet -> build\lib.win-amd64-cpython-312\pyarrow\tests\data\parquet copying pyarrow\tests\data\parquet\v0.7.1.parquet -> build\lib.win-amd64-cpython-312\pyarrow\tests\data\parquet copying pyarrow\tests\data\parquet\v0.7.1.some-named-index.parquet -> build\lib.win-amd64-cpython-312\pyarrow\tests\data\parquet running build_ext creating C:\Users\Administrator\AppData\Local\Temp\pip-install-nal6j65r\pyarrow_b52a814ff7ee42579bd6ff00e16eb18d\build\cpp -- Running CMake for PyArrow C++ cmake -DARROW_BUILD_DIR=build -DCMAKE_BUILD_TYPE=release -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_INSTALL_PREFIX=C:\Users\Administrator\AppData\Local\Temp\pip-install-nal6j65r\pyarrow_b52a814ff7ee42579bd6ff00e16eb18d\build\dist -DPYTHON_EXECUTABLE=C:\Users\Administrator\AppData\Local\Programs\Python\Python312\python.exe -DPython3_EXECUTABLE=C:\Users\Administrator\AppData\Local\Programs\Python\Python312\python.exe -DPYARROW_CXXFLAGS= -DPYARROW_WITH_DATASET=off -DPYARROW_WITH_PARQUET_ENCRYPTION=off -DPYARROW_WITH_HDFS=off -DPYARROW_WITH_FLIGHT=off -G "Visual Studio 15 2017 Win64" C:\Users\Administrator\AppData\Local\Temp\pip-install-nal6j65r\pyarrow_b52a814ff7ee42579bd6ff00e16eb18d\pyarrow/src error: command 'cmake' failed: None [end of output] note: This error originates from a subprocess, and is likely not a problem with pip. ERROR: Failed building wheel for pyarrow Failed to build pyarrow error: failed-wheel-build-for-install × Failed to build installable wheels for some pyproject.toml based projects ╰─> pyarrow
09-22
copying pyarrow\tests\parquet\test_dataset.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_data_types.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_datetime.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_encryption.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_metadata.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_pandas.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_parquet_file.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\parquet copying pyarrow\tests\parquet\test_parquet_writer.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\parquet copying pyarrow\tests\parquet\__init__.py -> build\lib.win-amd64-cpython-313\pyarrow\tests\parquet running egg_info writing pyarrow.egg-info\PKG-INFO writing dependency_links to pyarrow.egg-info\dependency_links.txt writing requirements to pyarrow.egg-info\requires.txt writing top-level names to pyarrow.egg-info\top_level.txt listing git files failed - pretending there aren't any reading manifest file 'pyarrow.egg-info\SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no files found matching '..\LICENSE.txt' warning: no files found matching '..\NOTICE.txt' warning: no previously-included files matching '*.so' found anywhere in distribution warning: no previously-included files matching '*.pyc' found anywhere in distribution warning: no previously-included files matching '*~' found anywhere in distribution warning: no previously-included files matching '#*' found anywhere in distribution warning: no previously-included files matching '.git*' found anywhere in distribution warning: no previously-included files matching '.DS_Store' found anywhere in distribution no previously-included directories found matching '.asv' writing manifest file 'pyarrow.egg-info\SOURCES.txt' copying pyarrow\__init__.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_acero.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_acero.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_compute.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_compute.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_csv.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_csv.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_cuda.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_cuda.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_dataset.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_dataset.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_dataset_orc.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_dataset_parquet.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_dataset_parquet.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_dataset_parquet_encryption.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_feather.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_flight.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_fs.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_fs.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_gcsfs.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_hdfs.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_hdfsio.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_json.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_json.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_orc.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_orc.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_parquet.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_parquet.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_parquet_encryption.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_parquet_encryption.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_pyarrow_cpp_tests.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_pyarrow_cpp_tests.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_s3fs.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\_substrait.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\array.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\benchmark.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\builder.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\compat.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\config.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\error.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\gandiva.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\io.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\ipc.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\lib.pxd -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\lib.pyx -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\memory.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\pandas-shim.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\public-api.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\scalar.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\table.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\tensor.pxi -> build\lib.win-amd64-cpython-313\pyarrow copying pyarrow\types.pxi -> build\lib.win-amd64-cpython-313\pyarrow creating build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\common.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libarrow.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libarrow_acero.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libarrow_cuda.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libarrow_dataset.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libarrow_dataset_parquet.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libarrow_feather.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libarrow_flight.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libarrow_fs.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libarrow_python.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libarrow_substrait.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libgandiva.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\libparquet_encryption.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\includes\__init__.pxd -> build\lib.win-amd64-cpython-313\pyarrow\includes copying pyarrow\tests\bound_function_visit_strings.pyx -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\extensions.pyx -> build\lib.win-amd64-cpython-313\pyarrow\tests copying pyarrow\tests\pyarrow_cython_example.pyx -> build\lib.win-amd64-cpython-313\pyarrow\tests creating build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\CMakeLists.txt -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\api.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\arrow_to_pandas.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\arrow_to_pandas.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\arrow_to_python_internal.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\async.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\benchmark.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\benchmark.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\common.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\common.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\csv.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\csv.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\datetime.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\datetime.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\decimal.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\decimal.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\deserialize.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\deserialize.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\extension_type.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\extension_type.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\filesystem.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\filesystem.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\flight.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\flight.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\gdb.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\gdb.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\helpers.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\helpers.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\inference.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\inference.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\init.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\init.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\io.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\io.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\ipc.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\ipc.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\iterators.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\numpy_convert.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\numpy_convert.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\numpy_internal.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\numpy_interop.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\numpy_to_arrow.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\numpy_to_arrow.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\parquet_encryption.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\parquet_encryption.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\pch.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\platform.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\pyarrow.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\pyarrow.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\pyarrow_api.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\pyarrow_lib.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\python_test.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\python_test.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\python_to_arrow.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\python_to_arrow.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\serialize.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\serialize.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\type_traits.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\udf.cc -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\udf.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python copying pyarrow\src\arrow\python\visibility.h -> build\lib.win-amd64-cpython-313\pyarrow\src\arrow\python creating build\lib.win-amd64-cpython-313\pyarrow\tests\data\feather copying pyarrow\tests\data\feather\v0.17.0.version.2-compression.lz4.feather -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\feather creating build\lib.win-amd64-cpython-313\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\README.md -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\TestOrcFile.emptyFile.jsn.gz -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\TestOrcFile.emptyFile.orc -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\TestOrcFile.test1.jsn.gz -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\TestOrcFile.test1.orc -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\TestOrcFile.testDate1900.jsn.gz -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\TestOrcFile.testDate1900.orc -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\decimal.jsn.gz -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\orc copying pyarrow\tests\data\orc\decimal.orc -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\orc creating build\lib.win-amd64-cpython-313\pyarrow\tests\data\parquet copying pyarrow\tests\data\parquet\v0.7.1.all-named-index.parquet -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\parquet copying pyarrow\tests\data\parquet\v0.7.1.column-metadata-handling.parquet -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\parquet copying pyarrow\tests\data\parquet\v0.7.1.parquet -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\parquet copying pyarrow\tests\data\parquet\v0.7.1.some-named-index.parquet -> build\lib.win-amd64-cpython-313\pyarrow\tests\data\parquet running build_ext creating C:\Users\Administrator\AppData\Local\Temp\pip-install-wrjj3ms4\pyarrow_41692841b7744b60bbbc4bd9879199e9\build\temp.win-amd64-cpython-313 -- Running cmake for PyArrow cmake -DCMAKE_INSTALL_PREFIX=C:\Users\Administrator\AppData\Local\Temp\pip-install-wrjj3ms4\pyarrow_41692841b7744b60bbbc4bd9879199e9\build\lib.win-amd64-cpython-313\pyarrow -DPYTHON_EXECUTABLE=D:\zy\project-python-zy\ai\test-image\ti-test01\venv\Scripts\python.exe -DPython3_EXECUTABLE=D:\zy\project-python-zy\ai\test-image\ti-test01\venv\Scripts\python.exe -DPYARROW_CXXFLAGS= -G "Visual Studio 15 2017 Win64" -DPYARROW_BUILD_CUDA=off -DPYARROW_BUILD_SUBSTRAIT=off -DPYARROW_BUILD_FLIGHT=off -DPYARROW_BUILD_GANDIVA=off -DPYARROW_BUILD_ACERO=off -DPYARROW_BUILD_DATASET=off -DPYARROW_BUILD_ORC=off -DPYARROW_BUILD_PARQUET=off -DPYARROW_BUILD_PARQUET_ENCRYPTION=off -DPYARROW_BUILD_GCS=off -DPYARROW_BUILD_S3=off -DPYARROW_BUILD_HDFS=off -DPYARROW_BUNDLE_ARROW_CPP=off -DPYARROW_BUNDLE_CYTHON_CPP=off -DPYARROW_GENERATE_COVERAGE=off -DCMAKE_BUILD_TYPE=release C:\Users\Administrator\AppData\Local\Temp\pip-install-wrjj3ms4\pyarrow_41692841b7744b60bbbc4bd9879199e9 error: command 'cmake' failed: None [end of output] note: This error originates from a subprocess, and is likely not a problem with pip. ERROR: Failed building wheel for pyarrow Failed to build pyarrow error: failed-wheel-build-for-install × Failed to build installable wheels for some pyproject.toml based projects ╰─> pyarrow (venv) PS D:\zy\project-python-zy\ai\test-image\ti-test01>
08-26
出现无法打开文件 '../ceres-solver-2.1.0/data/problem-16-22106-pre.txt' 并出现段错误的问题,可从以下几个方面排查解决: ### 文件路径问题 要保证文件路径正确,确认 '../ceres-solver-2.1.0/data/problem-16-22106-pre.txt' 文件确实存在于指定位置。可以使用以下命令检查文件是否存在: ```bash ls ../ceres-solver-2.1.0/data/problem-16-22106-pre.txt ``` 若文件不存在,可能是解压过程有问题或者文件本身缺失。需重新解压 ceres-solver-2.1.0 的压缩包: ```bash tar zxf ceres-solver-2.1.0.tar.gz ``` ### 文件权限问题 检查文件是否有读取权限。使用以下命令修改文件权限: ```bash chmod +r ../ceres-solver-2.1.0/data/problem-16-22106-pre.txt ``` ### 编译和安装问题 确保 ceres-solver 2.1.0 正确编译和安装。参考正确的安装步骤: ```bash tar zxf ceres-solver-2.1.0.tar.gz mkdir ceres-bin cd ceres-bin cmake ../ceres-solver-2.1.0 make -j3 sudo make install ``` ### 版本兼容性问题 确认使用的版本与测试代码兼容。有时候版本不匹配会导致文件读取和运行出错。若问题依旧存在,可尝试更换其他版本,如 1.13 版本 [^2]。 ### 依赖库问题 确保所有依赖库都已正确安装。安装 ceres-solver 2.2 的依赖库命令如下,对于 2.1.0 版本也可参考: ```bash # CMake sudo apt-get install cmake # google-glog + gflags sudo apt-get install libgoogle-glog-dev libgflags-dev # Use ATLAS for BLAS & LAPACK sudo apt-get install libatlas-base-dev # Eigen3 sudo apt-get install libeigen3-dev # SuiteSparse (optional) sudo apt-get install libsuitesparse-dev ```
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值